/* Complaint Menu Styles */

/* Layout Utilities */
.max-w-4xl {
    max-width: 56rem;
    margin: 0 auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

/* Flexbox Utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-start {
    justify-content: flex-start;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.flex-1 {
    flex: 1 1 0%;
}

/* Responsive Flexbox */
@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
    
    .sm\:justify-start {
        justify-content: flex-start;
    }
    
    .sm\:text-left {
        text-align: left;
    }
}

/* Typography */
.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.text-center {
    text-align: center;
}

/* Colors */
.text-fresh-green {
    color: #10b981;
}

.text-fresh-blue {
    color: #3b82f6;
}

.text-white {
    color: #ffffff;
}

.text-fresh-green\/70 {
    color: rgba(16, 185, 129, 0.7);
}

.text-fresh-green\/60 {
    color: rgba(16, 185, 129, 0.6);
}

/* Background Colors */
.bg-white {
    background-color: #ffffff;
}

.bg-fresh-blue {
    background-color: #3b82f6;
}

.bg-fresh-green-pale {
    background-color: #ecfdf5;
}

.bg-fresh-yellow\/20 {
    background-color: rgba(255, 193, 7, 0.2);
}

/* Sizing */
.w-10 {
    width: 2.5rem;
}

.h-10 {
    height: 2.5rem;
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

/* Border Radius */
.rounded-2xl {
    border-radius: 1rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-full {
    border-radius: 9999px;
}

/* Shadow */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-fresh-blue\/30 {
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3), 0 4px 6px -2px rgba(59, 130, 246, 0.15);
}

/* Hover Effects */
.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hover\:bg-fresh-blue-dark:hover {
    background-color: #1d4ed8;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

/* Active Effects */
.active\:scale-95:active {
    transform: scale(0.95);
}

/* Transitions */
.transition-all {
    transition: all 0.3s ease;
}

.duration-300 {
    transition-duration: 300ms;
}

/* Positioning */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.inline-flex {
    display: inline-flex;
}

/* Positioning Utilities */
.top-1\/2 {
    top: 50%;
}

.-right-2 {
    right: -0.5rem;
}

.-translate-y-1\/2 {
    transform: translateY(-50%);
}

.z-10 {
    z-index: 10;
}

/* Grid Layouts */
.grid {
    display: grid;
}

.gap-4 {
    gap: 1rem;
}

.sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (min-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .lg\:block {
        display: block;
    }
}

/* Padding & Margin */
.p-6 {
    padding: 1.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-8 {
    padding: 2rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

/* Forms */
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 1.5rem;
}

.block {
    display: block;
}

.w-full {
    width: 100%;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.border {
    border-width: 1px;
}

.border-fresh-green-pale {
    border-color: #a7f3d0;
}

.focus\:border-fresh-blue:focus {
    border-color: #3b82f6;
}

.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px #3b82f6;
}

.focus\:ring-fresh-blue\/20:focus {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.placeholder\:text-fresh-green\/60::placeholder {
    color: rgba(16, 185, 129, 0.6);
}

.textarea {
    resize: none;
}

.rows-5 {
    rows: 5;
}

/* Button Styles */
.font-semibold {
    font-weight: 600;
}

.rounded-full {
    border-radius: 9999px;
}

.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-105:hover {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
}

.active\:scale-95:active {
    --tw-scale-x: 0.95;
    --tw-scale-y: 0.95;
}

.hover\:bg-fresh-blue-dark:hover {
    background-color: #1d4ed8;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-fresh-blue\/30 {
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3), 0 4px 6px -2px rgba(59, 130, 246, 0.15);
}

.text-fresh-blue {
    color: #3b82f6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .max-w-4xl {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .text-4xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    
    .flex {
        flex-direction: column;
    }
    
    .sm\:flex-row {
        flex-direction: column;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .sm\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .lg\:grid-cols-4 {
        grid-template-columns: 1fr;
    }
    
    .lg\:block {
        display: none;
    }
}