/* Custom styles to complement Tailwind */
:root {
    --primary-color: #2563eb;
    --primary-light: #eff6ff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    -webkit-tap-highlight-color: transparent;
}

.page-content {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tab Bar active state */
.tab-active {
    color: var(--primary-color) !important;
}

.tab-inactive {
    color: #9ca3af !important;
}

/* Custom inputs for better mobile feel */
input:focus, select:focus {
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

/* Banner gradient text effect */
.banner-text {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hide scrollbar for mobile feel */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Appeal Form Styles */
.contents {
    display: contents;
}

input[type="radio"]:disabled {
    cursor: not-allowed;
}

.shadow-up {
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-bounce {
    animation: bounce 1s infinite ease-in-out;
}

.grayscale-disabled {
    filter: grayscale(100%);
    opacity: 0.6;
    cursor: not-allowed;
}