/**
 * Wahala Workers - Custom Styles
 * Nigerian-themed vibrant design with green and white
 */

:root {
    --primary-green: #009E60;
    --secondary-green: #00B875;
    --bright-green: #00FF88;
    --accent-teal: #00CED1;
    --vibrant-teal: #20E3B2;
    --warm-orange: #FF6B35;
    --warm-yellow: #FFD23F;
    --gold: #FFC107;
    --danger-red: #DC3545;
    --vibrant-red: #FF4757;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --dark: #212529;
    --shadow: rgba(0, 0, 0, 0.15);
    --shadow-lg: rgba(0, 158, 96, 0.3);
}

* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-attachment: fixed;
    color: var(--dark);
    min-height: 100vh;
}

/* Animated Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 158, 96, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 206, 209, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundShift 20s ease infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.1); }
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary-green);
}

/* Ensure navbar expands on desktop (>= 992px) */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
    
    .navbar-expand-lg .navbar-toggler {
        display: none !important;
    }
    
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }
}

/* Ensure navbar collapses on mobile (< 992px) */
@media (max-width: 991.98px) {
    .navbar-expand-lg .navbar-collapse {
        display: none !important;
    }
    
    .navbar-expand-lg .navbar-collapse.show {
        display: flex !important;
        flex-direction: column;
        width: 100%;
    }
    
    .navbar-expand-lg .navbar-toggler {
        display: block !important;
    }
    
    .navbar-expand-lg .navbar-nav {
        flex-direction: column;
    }
    
    /* Ensure Login/Sign Up buttons are visible on mobile */
    .navbar .d-lg-none {
        display: flex !important;
        align-items: center;
        gap: 0.5rem;
    }
    
    /* Mobile navbar layout */
    .navbar > .container {
        flex-wrap: wrap;
    }
    
    .navbar-collapse.show {
        order: 3;
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Buttons */
.btn-success {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 158, 96, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-success::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-success:hover::before {
    width: 300px;
    height: 300px;
}

.btn-success:hover {
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--bright-green) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 158, 96, 0.4);
}

.btn-success:active {
    transform: translateY(-1px);
}

/* White button matching success button style */
.btn-white {
    background: #ffffff;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 158, 96, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-white::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 158, 96, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-white:hover::before {
    width: 300px;
    height: 300px;
}

.btn-white:hover {
    background: #ffffff;
    border-color: var(--secondary-green);
    color: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 158, 96, 0.3);
}

.btn-white:active {
    transform: translateY(-1px);
}

.btn-danger {
    background-color: var(--danger-red);
    border-color: var(--danger-red);
    font-weight: 600;
}

.btn-outline-success {
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-outline-success:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

/* Cards */
.card {
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-lg);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    border-radius: 0 0 50px 50px;
    margin-bottom: 3rem;
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--accent-teal) 0%, #20B2AA 100%);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-red) 0%, #C82333 100%);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, var(--warm-yellow) 0%, var(--gold) 100%);
}

/* Progress Circles */
.progress-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.progress-ring-progress {
    transition: stroke-dashoffset 0.5s ease;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

/* Worker Cards */
.worker-card {
    overflow: hidden;
}

.worker-card img {
    transition: transform 0.3s ease;
}

.worker-card:hover img {
    transform: scale(1.05);
}

/* Forms */
.form-control,
.form-select {
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(0, 158, 96, 0.25), 0 4px 12px rgba(0, 158, 96, 0.15);
    transform: translateY(-2px);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.input-group-text {
    border-radius: 12px 0 0 12px;
    border: 2px solid #e0e0e0;
    border-right: none;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--primary-green);
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 12px 12px 0;
}

.input-group .form-control:focus {
    border-left: 2px solid var(--primary-green);
}

.form-control-lg {
    padding: 0.875rem 1.25rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

/* Search Form Specific Styles */
/* Modern Search Form - Clean Design */
.search-form-card-modern {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.1);
    border: 1px solid rgba(46, 125, 50, 0.1);
    transition: box-shadow 0.3s ease;
    max-width: 1000px;
    margin: 0 auto;
}

.search-form-card-modern:hover {
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
}

#searchForm {
    position: relative;
}

/* Modern Input Group */
#searchForm .input-group-modern {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(46, 125, 50, 0.2);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#searchForm .input-group-modern:focus-within {
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

#searchForm .input-group-modern .input-group-text {
    background: #ffffff;
    border: none;
    color: #666;
    padding: 0.75rem 1rem;
}

#searchForm .input-group-modern .form-control {
    background: #ffffff;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: #333;
}

#searchForm .input-group-modern .form-control:focus {
    background: #ffffff;
    border: none;
    box-shadow: none;
    color: #333;
}

#searchForm .input-group-modern .form-control::placeholder {
    color: #999;
}

/* Camera button removed from input group - now in photo upload section */

/* Modern Search Button */
#searchForm .btn-search-modern {
    background: #2e7d32;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    min-height: 48px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(46, 125, 50, 0.2);
}

#searchForm .btn-search-modern:hover {
    background: #66bb6a;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.3);
    transform: translateY(-1px);
}

#searchForm .btn-search-modern:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(46, 125, 50, 0.2);
}

/* Form Controls Styling */
#searchForm .form-control,
#searchForm .form-select {
    border: 1px solid rgba(46, 125, 50, 0.2);
    border-radius: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#searchForm .form-control:focus,
#searchForm .form-select:focus {
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
    outline: none;
}

#searchForm .form-control-sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

#searchForm .form-select-sm {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    font-size: 0.875rem;
}

/* Occupation Filterable Dropdown */
.occupation-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: #ffffff !important;
    border: 1px solid rgba(46, 125, 50, 0.2) !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    max-height: 200px !important;
    overflow-y: auto !important;
    z-index: 9999 !important;
    display: none !important;
    margin-top: 2px !important;
    width: 100% !important;
    visibility: visible !important;
}

.occupation-dropdown[style*="block"] {
    display: block !important;
    visibility: visible !important;
}

.occupation-item {
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 0.875rem;
    color: #333;
}

.occupation-item:hover {
    background-color: rgba(46, 125, 50, 0.1);
}

.occupation-item:first-child {
    border-radius: 6px 6px 0 0;
}

.occupation-item:last-child {
    border-radius: 0 0 6px 6px;
}

/* Scrollbar styling for occupation dropdown */
.occupation-dropdown::-webkit-scrollbar {
    width: 6px;
}

.occupation-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.occupation-dropdown::-webkit-scrollbar-thumb {
    background: rgba(46, 125, 50, 0.3);
    border-radius: 3px;
}

.occupation-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(46, 125, 50, 0.5);
}

/* Ensure parent container is positioned relative */
.position-relative {
    position: relative !important;
}

/* Mobile responsive for occupation dropdown */
@media (max-width: 768px) {
    .occupation-dropdown {
        max-height: 150px !important;
        font-size: 0.85rem !important;
    }
    
    .occupation-item {
        padding: 0.625rem 0.75rem !important;
        font-size: 0.85rem !important;
    }
}

#searchForm .form-select-lg {
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    font-size: 1rem;
    min-height: 48px;
    border: 1px solid rgba(46, 125, 50, 0.2);
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#searchForm .form-select-lg:focus {
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
    outline: none;
}

/* Labels */
#searchForm .form-label {
    color: #555;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

#searchForm .form-label.small {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Photo Upload Section - Same Style as Search Button */
#searchForm .btn-photo-upload-toggle {
    background: #2e7d32 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    min-height: 48px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(46, 125, 50, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

#searchForm .btn-photo-upload-toggle:hover {
    background: #66bb6a !important;
    color: #ffffff !important;
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.3);
    transform: translateY(-1px);
}

#searchForm .btn-photo-upload-toggle:active,
#searchForm .btn-photo-upload-toggle:focus {
    background: #2e7d32 !important;
    color: #ffffff !important;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(46, 125, 50, 0.2);
}

#searchForm .btn-photo-upload-toggle i {
    color: #ffffff !important;
}

#searchForm .btn-outline-secondary {
    border-color: rgba(46, 125, 50, 0.2);
    color: #666;
}

#searchForm .btn-outline-secondary:hover {
    background: #f5f5f5;
    border-color: #2e7d32;
    color: #2e7d32;
}

/* Photo Upload Section */
#searchForm #photoUploadSection .d-flex {
    gap: 0.5rem;
}

#searchForm #photoUploadSection #cameraBtn {
    border-color: rgba(46, 125, 50, 0.2);
    color: #666;
    transition: all 0.3s ease;
}

#searchForm #photoUploadSection #cameraBtn:hover {
    background: #f5f5f5;
    border-color: #2e7d32;
    color: #2e7d32;
}

/* Hero Section Search Card */
.hero-section .card {
    animation: slideInUp 0.6s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section .card-body {
    padding: 2rem;
}

/* Mobile Form Improvements */
@media (max-width: 768px) {
    .hero-section .card-body {
        padding: 1rem;
    }
    
    #searchForm .card-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    /* Modern Search Form Mobile Optimizations */
    .search-form-card-modern {
        border-radius: 10px;
    }
    
    #searchForm .form-label {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    #searchForm .form-control-lg {
        padding: 0.875rem 1rem;
        font-size: 16px !important; /* Prevents zoom on iOS */
        min-height: 48px;
    }
    
    #searchForm .input-group-modern {
        flex-wrap: nowrap !important;
        width: 100%;
        display: flex !important;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    #searchForm .input-group-modern .input-group-text {
        flex-shrink: 0;
        min-width: 48px;
        padding: 0.875rem 0.75rem !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #searchForm .input-group-modern .form-control,
    #searchForm .input-group-modern .form-control-lg {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        width: auto !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    /* Fix border issues on mobile */
    #searchForm .input-group-modern .input-group-text.border-end-0 {
        border-right: none !important;
    }
    
    #searchForm .input-group-modern .form-control.border-start-0 {
        border-left: none !important;
    }
    
    /* Photo upload toggle on mobile */
    #searchForm .btn-photo-upload-toggle {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
        min-height: 48px;
    }
    
    /* Photo upload buttons on mobile */
    #searchForm #photoUploadSection .d-flex {
        flex-direction: column;
    }
    
    #searchForm #photoUploadSection .d-flex > * {
        width: 100%;
    }
    
    #searchForm .btn-search-modern {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
        min-height: 48px; /* Touch-friendly */
    }
    
    /* Stack search input and button on mobile */
    #searchForm .row.g-2.align-items-end {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }
    
    #searchForm .row.g-2.align-items-end > [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-bottom: 0.75rem;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    #searchForm .row.g-2.align-items-end > [class*="col-"]:last-child {
        margin-bottom: 0;
    }
    
    /* Ensure label displays properly on mobile */
    #searchForm .form-label.small {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
        display: block;
        width: 100%;
    }
    
    
    #searchForm .btn-search-modern {
        width: 100%;
    }
    
    /* Form spacing on mobile */
    #searchForm .mb-3 {
        margin-bottom: 1rem !important;
    }
    
    #searchForm .mb-2 {
        margin-bottom: 0.75rem !important;
    }
    
    #searchForm .row.g-2 {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }
    
    #searchForm .row.g-2 > * {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
    
    /* Upload preview on mobile */
    #searchForm #uploadPreview {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    #searchForm #uploadPreview img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    #searchForm #removeUpload {
        width: 100%;
        min-height: 44px;
    }
}

/* Rating Stars */
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input .star-label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
}

.rating-input input[type="radio"]:checked ~ .star-label,
.rating-input .star-label:hover,
.rating-input .star-label.active {
    color: #FFD700;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Success Animation */
.success-animation {
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Border Dashed for Upload Areas */
.border-dashed {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.border-dashed:hover {
    border-color: var(--primary-green);
}

/* Badges */
.badge {
    padding: 0.5em 0.75em;
    font-weight: 600;
}

/* Alerts */
.alert {
    border-radius: 8px;
    border: none;
}

.alert-info {
    background-color: #E7F3FF;
    color: #004085;
}

/* Loading Spinner */
.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Typography */
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    /* Hero Section */
    .hero-section {
        border-radius: 0 0 30px 30px;
        padding: 2rem 1rem !important;
    }
    
    /* Cards */
    .card {
        border-radius: 15px;
        margin-bottom: 1rem;
    }
    
    .card-body {
        padding: 1.25rem;
    }
    
    /* Buttons - Larger touch targets */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        min-height: 44px; /* iOS recommended touch target */
    }
    
    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-height: 48px;
    }
    
    .btn-sm {
        min-height: 36px;
    }
    
    /* Forms */
    .form-control,
    .form-select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.875rem 1rem;
        min-height: 44px;
    }
    
    .form-control-lg {
        font-size: 16px;
        padding: 1rem;
        min-height: 48px;
    }
    
    /* Input Groups */
    .input-group-text {
        min-height: 44px;
        padding: 0.75rem 1rem;
    }
    
    /* Navigation */
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    /* Auth Pages */
    .auth-page {
        padding: 1rem 0;
        min-height: auto;
    }
    
    .auth-card {
        border-radius: 20px;
        margin: 1rem;
    }
    
    .auth-header {
        padding: 1.5rem;
    }
    
    .auth-header h2 {
        font-size: 1.5rem;
    }
    
    .auth-body {
        padding: 1.5rem;
    }
    
    .auth-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .auth-icon i {
        font-size: 1.5rem;
    }
    
    .signup-hero {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .signup-hero h1 {
        font-size: 1.75rem;
    }
    
    /* Progress Circles */
    .progress-circle {
        width: 100px;
        height: 100px;
    }
    
    .progress-ring {
        width: 100px;
        height: 100px;
    }
    
    /* Worker Cards */
    .worker-card img {
        height: 180px;
    }
    
    /* Tables */
    .table-responsive {
        font-size: 0.875rem;
    }
    
    /* Modals */
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-content {
        border-radius: 15px;
    }
    
    /* Alerts */
    .alert {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    /* Spacing */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    .mt-5 {
        margin-top: 2rem !important;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    /* Footer */
    footer {
        font-size: 0.875rem;
        padding: 2rem 1rem;
    }
    
    /* Camera Modal */
    #video {
        max-width: 100%;
        height: auto;
    }
    
    /* Rating Stars */
    .rating-input .star-label {
        font-size: 1.5rem;
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .auth-card {
        margin: 0.5rem;
        border-radius: 15px;
    }
    
    .auth-header {
        padding: 1.25rem;
    }
    
    .auth-header h2 {
        font-size: 1.25rem;
    }
    
    .auth-body {
        padding: 1.25rem;
    }
    
    .btn-submit-vibrant {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .signup-hero {
        padding: 1.5rem 1rem;
    }
    
    .signup-hero h1 {
        font-size: 1.5rem;
    }
    
    .signup-hero p {
        font-size: 0.9rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .display-4 {
        font-size: 1.5rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.25rem;
    }
    
    /* Stack columns on very small screens */
    .row.g-4 > [class*="col-"] {
        margin-bottom: 1rem;
    }
    
    /* Smaller icons */
    .fa-3x {
        font-size: 2rem !important;
    }
    
    .fa-4x {
        font-size: 2.5rem !important;
    }
    
    .fa-5x {
        font-size: 3rem !important;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets for touch devices */
    .btn {
        min-height: 48px;
        padding: 0.875rem 1.75rem;
    }
    
    .nav-link {
        padding: 1rem;
        min-height: 44px;
    }
    
    .form-check-input {
        width: 1.25rem;
        height: 1.25rem;
    }
    
    .form-check-label {
        padding-left: 0.5rem;
        font-size: 1rem;
    }
    
    /* Remove hover effects on touch devices */
    .card:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    /* Better tap feedback */
    .btn:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
    
    .card:active {
        transform: scale(0.98);
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .auth-page {
        padding: 1rem 0;
    }
    
    .auth-header {
        padding: 1.5rem;
    }
    
    .auth-body {
        padding: 1.5rem;
    }
    
    .signup-hero {
        padding: 1.5rem;
    }
}

/* Prevent text size adjustment on iOS */
@media screen and (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    input,
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Mobile Device Specific */
.mobile-device {
    /* Optimize for mobile performance */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mobile-device .card:hover {
    transform: none;
    box-shadow: 0 4px 12px var(--shadow);
}

.mobile-device .btn:hover {
    transform: none;
}

.mobile-device .btn:active {
    transform: scale(0.95);
    opacity: 0.8;
}

/* Better tap feedback */
@media (hover: none) {
    .btn:active,
    .card:active,
    .nav-link:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* Safe area insets for notched devices */
@supports (padding: max(0px)) {
    .container,
    .auth-page {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
    
    footer {
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-green);
}

/* Focus States for Accessibility */
*:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* Login/Signup Pages - Vibrant Design */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.auth-container {
    position: relative;
    z-index: 1;
}

.auth-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--vibrant-teal), var(--warm-orange), var(--gold));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.auth-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--vibrant-teal) 100%);
    padding: 2.5rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.auth-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.auth-header h2 {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.auth-header p {
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

.auth-body {
    padding: 2.5rem;
}

.auth-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--vibrant-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 158, 96, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.auth-icon i {
    font-size: 2rem;
    color: white;
}

/* Signup Page Specific */
.signup-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--vibrant-teal) 50%, var(--warm-orange) 100%);
    background-size: 200% 200%;
    animation: gradientMove 8s ease infinite;
    padding: 3rem;
    border-radius: 20px;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.signup-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.signup-benefits {
    background: linear-gradient(135deg, rgba(255, 215, 63, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.signup-benefits h6 {
    color: var(--warm-orange);
    font-weight: 700;
}

.signup-benefits ul {
    list-style: none;
    padding: 0;
}

.signup-benefits li {
    padding: 0.5rem 0;
    color: var(--dark);
}

.signup-benefits li::before {
    content: '✓ ';
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* Admin Login Specific */
.admin-login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.admin-login .auth-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.admin-login .auth-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.admin-login .btn-submit-vibrant {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.admin-login .btn-submit-vibrant:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

/* Vibrant Input Groups */
.input-group-vibrant .input-group-text {
    background: linear-gradient(135deg, var(--primary-green), var(--vibrant-teal));
    color: white;
    border: none;
    font-weight: 600;
}

.input-group-vibrant .form-control {
    border-left: none;
}

.input-group-vibrant .form-control:focus {
    border-color: var(--primary-green);
}

/* About Summary & Disclaimer Cards */
.about-summary-card {
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s ease;
}

.about-summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 158, 96, 0.2);
}

.disclaimer-card {
    border-left: 4px solid var(--warm-yellow);
    transition: all 0.3s ease;
}

.disclaimer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 210, 63, 0.2);
}

/* Form Check Styling - Consistent with links */
.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-check-input {
    margin-top: 0;
    margin-right: 0;
    width: 1.125rem;
    height: 1.125rem;
    cursor: pointer;
    flex-shrink: 0;
}

.form-check-label {
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    margin-left: 0;
    line-height: 1.5;
    color: var(--dark);
}

/* Ensure "Forgot password" link matches "Remember me" styling */
.auth-body a.text-success.fw-bold {
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-body a.text-success.fw-bold:hover {
    color: var(--secondary-green) !important;
    text-decoration: underline;
}

/* Animated Submit Button */
.btn-submit-vibrant {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--vibrant-teal) 50%, var(--warm-orange) 100%);
    background-size: 200% 200%;
    animation: gradientMove 3s ease infinite;
    border: none;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 158, 96, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit-vibrant::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s;
}

.btn-submit-vibrant:hover::before {
    left: 100%;
}

.btn-submit-vibrant:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 158, 96, 0.5);
}

/* Floating Animation */
@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-card {
    animation: floatUp 0.6s ease-out;
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    .auth-card {
        animation: none; /* Disable animation on mobile for performance */
    }
    
    /* Reduce animation complexity on mobile */
    .auth-header::before {
        animation-duration: 30s;
    }
    
    .signup-hero::before {
        animation-duration: 20s;
    }
    
    /* Simplify gradients on mobile */
    body::before {
        animation: none;
    }
    
    /* All Forms - Mobile Optimizations */
    .form-label {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: block;
        width: 100%;
    }
    
    .form-control,
    .form-select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        padding: 0.875rem 1rem;
        min-height: 48px; /* Touch-friendly */
        border-radius: 8px;
        -webkit-appearance: none; /* Remove iOS default styling */
        appearance: none;
    }
    
    /* Prevent iOS zoom on input focus */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="search"],
    input[type="date"],
    textarea,
    select {
        font-size: 16px !important;
    }
    
    .form-control-lg {
        font-size: 16px !important;
        padding: 1rem;
        min-height: 52px;
    }
    
    .form-control:focus,
    .form-select:focus {
        border-width: 2px;
        padding: calc(0.875rem - 1px) calc(1rem - 1px);
    }
    
    .form-control-lg:focus {
        padding: calc(1rem - 1px);
    }
    
    /* Input groups mobile */
    .input-group {
        flex-wrap: nowrap !important;
        width: 100%;
        display: flex !important;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .input-group .form-control,
    .input-group-vibrant .form-control {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        width: auto !important;
        max-width: 100% !important;
        box-sizing: border-box;
        font-size: 16px !important; /* Prevents iOS zoom */
    }
    
    .input-group-text {
        flex-shrink: 0;
        padding: 0.875rem 1rem !important;
        min-width: 48px;
        justify-content: center;
        display: flex;
        align-items: center;
    }
    
    .input-group-vibrant .input-group-text {
        padding: 0.875rem 1rem !important;
        min-width: 50px;
    }
    
    /* Fix input-group-vibrant on mobile */
    .input-group-vibrant {
        width: 100%;
        overflow: hidden;
        border-radius: 8px;
    }
    
    .input-group-vibrant .input-group-text {
        border-right: none !important;
    }
    
    .input-group-vibrant .form-control {
        border-left: none !important;
        border-right: 2px solid #e0e0e0;
    }
    
    .input-group-vibrant .form-control:focus {
        border-left: none !important;
        border-right: 2px solid var(--primary-green);
    }
    
    /* Fix password toggle button on mobile */
    .input-group-vibrant .btn-outline-secondary {
        flex-shrink: 0;
        min-width: 48px;
        padding: 0.875rem 1rem;
        border-left: none !important;
        border-right: 2px solid #e0e0e0;
    }
    
    .input-group-vibrant .form-control:focus ~ .btn-outline-secondary {
        border-right: 2px solid var(--primary-green);
    }
    
    /* Buttons mobile */
    .btn {
        min-height: 48px;
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
    }
    
    .btn-lg {
        min-height: 52px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .btn-sm {
        min-height: 40px;
        padding: 0.5rem 1rem;
    }
    
    /* Auth forms mobile */
    .auth-card {
        margin: 1rem;
        border-radius: 16px;
        width: calc(100% - 2rem);
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .auth-body {
        padding: 1.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .auth-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .auth-header h2 {
        font-size: 1.5rem;
    }
    
    /* Ensure form columns stack on mobile */
    .auth-body .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .auth-body .row > [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 1rem;
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    
    .auth-body .row > [class*="col-"]:last-child {
        margin-bottom: 0;
    }
    
    /* Ensure form labels display properly */
    .auth-body .form-label {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    /* Fix small text and help text on mobile */
    .auth-body small.text-muted,
    .auth-body .form-text {
        display: block;
        width: 100%;
        margin-top: 0.25rem;
        font-size: 0.75rem;
    }
    
    /* Search form card mobile */
    .search-form-card-modern {
        margin: 0;
        border-radius: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .search-form-card-modern .card-body {
        padding: 1.25rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Ensure search form container doesn't overflow */
    #searchForm {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    /* Report form mobile */
    .card-body {
        padding: 1.25rem 1rem;
    }
    
    /* Phone numbers container mobile */
    #phoneNumbersContainer .input-group {
        flex-direction: column;
    }
    
    #phoneNumbersContainer .input-group .form-control {
        border-radius: 8px 8px 0 0;
        border-bottom: none;
    }
    
    #phoneNumbersContainer .input-group button {
        border-radius: 0 0 8px 8px;
        border-top: 1px solid #ced4da;
        width: 100%;
        min-height: 48px;
    }
    
    /* Employment container mobile */
    #employmentContainer .input-group {
        flex-direction: column;
    }
    
    #employmentContainer .input-group .form-control {
        border-radius: 8px 8px 0 0;
        border-bottom: none;
    }
    
    #employmentContainer .input-group button {
        border-radius: 0 0 8px 8px;
        border-top: 1px solid #ced4da;
        width: 100%;
        min-height: 48px;
    }
    
    /* Multiple select fields mobile */
    select[multiple] {
        min-height: 150px;
    }
    
    /* Textarea mobile */
    textarea.form-control {
        min-height: 120px;
        font-size: 16px;
        line-height: 1.5;
    }
    
    /* Select dropdown mobile */
    .form-select {
        background-size: 20px 20px;
        padding-right: 2.5rem;
    }
    
    /* Small text mobile */
    small.text-muted,
    .form-text {
        font-size: 0.75rem;
        line-height: 1.4;
        display: block;
        margin-top: 0.25rem;
    }
    
    /* Form spacing mobile */
    .mb-3,
    .mb-4 {
        margin-bottom: 1.25rem !important;
    }
    
    .mt-3,
    .mt-4 {
        margin-top: 1rem !important;
    }
    
    /* Row gaps mobile */
    .row.g-3 {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .row.g-3 > * {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        margin-bottom: 1rem;
    }
    
    /* File upload buttons mobile */
    label.btn,
    .btn[for] {
        width: 100%;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    /* Upload preview mobile */
    #uploadPreview,
    #photoPreview {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        width: 100%;
    }
    
    #uploadPreview img,
    #photoPreview img {
        max-width: 100%;
        width: 100%;
        height: auto;
        border-radius: 8px;
    }
    
    /* Camera button in input group mobile */
    .input-group #cameraBtn {
        min-width: 48px;
        padding: 0.5rem;
        flex-shrink: 0;
    }
    
    /* Alert mobile */
    .alert {
        padding: 1rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    /* Checkbox and radio mobile */
    .form-check {
        margin-bottom: 0.75rem;
    }
    
    .form-check-input {
        width: 1.25rem;
        height: 1.25rem;
        margin-top: 0.25rem;
    }
    
    .form-check-label {
        font-size: 0.9rem;
        padding-left: 0.5rem;
    }
    
    /* Hero section mobile */
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .auth-card {
        margin: 0.5rem;
    }
    
    .auth-body {
        padding: 1.25rem 0.75rem;
    }
    
    .search-form-card .card-body {
        padding: 1rem 0.75rem;
    }
    
    .card-body {
        padding: 1rem 0.75rem;
    }
    
    .form-control,
    .form-select {
        font-size: 16px !important;
        padding: 0.75rem 0.875rem;
    }
    
    .form-control-lg {
        padding: 0.875rem 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Stack input groups on very small screens */
    .input-group {
        flex-direction: column;
    }
    
    .input-group .form-control {
        border-radius: 8px 8px 0 0;
        border-bottom: none;
    }
    
    .input-group #cameraBtn,
    .input-group .btn {
        border-radius: 0 0 8px 8px;
        border-top: 1px solid #ced4da;
        width: 100%;
        min-height: 48px;
    }
    
    .input-group #cameraBtn:focus,
    .input-group .btn:focus {
        border-top: 2px solid var(--primary-green);
    }
    
    /* Hero text smaller on very small screens */
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .hero-section .lead {
        font-size: 0.9rem;
    }
    
    /* Smaller badges on mobile */
    .badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.65rem;
    }
}

/* Mobile Landscape Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        padding: 1.5rem 0;
    }
    
    .auth-card {
        max-width: 500px;
        margin: 0.5rem auto;
    }
    
    .search-form-card-modern {
        max-width: 100%;
        margin: 0;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .btn,
    .form-control,
    .form-select,
    .form-check-input {
        min-height: 48px;
    }
    
    /* Remove hover effects on touch devices */
    .btn:hover {
        transform: none;
    }
    
    .card:hover {
        transform: none;
    }
    
    /* Better focus states for touch */
    .form-control:focus,
    .form-select:focus,
    .btn:focus {
        outline: 3px solid rgba(0, 158, 96, 0.3);
        outline-offset: 2px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    footer {
        display: none;
    }
}

