/* _content/zShuttle.CustomerPortal.WebUI/Pages/FeedbackPage.razor.rz.scp.css */
/* FeedbackPage.razor.css - Component-scoped styles */

/* Phone code styling */
.phone-code[b-72vxazd5se] {
    white-space: nowrap;
    letter-spacing: 0;
    font-family: var(--font-base);
}

/* Modal backdrop */
.modal-backdrop[b-72vxazd5se] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1004;
}

/* Modal content container */
.modal-content[b-72vxazd5se] {
    background: white;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    max-height: 80vh;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: fadeIn-b-72vxazd5se 0.3s ease-in-out;
    overflow: hidden;
}

/* Modal header */
.modal-header[b-72vxazd5se] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e0e0e0;
    background: white;
}

    .modal-header h3[b-72vxazd5se] {
        margin: 0;
        font-size: 1.2em;
        color: var(--brand-blue, var(--brand-blue));
        font-weight: 600;
    }

/* Close button */
.close-button[b-72vxazd5se] {
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.2s ease;
}

    .close-button:hover[b-72vxazd5se] {
        color: #000;
    }

/* Country list */
.country-list[b-72vxazd5se] {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: calc(80vh - 80px);
    overflow-y: auto;
    background: white;
}

    .country-list li[b-72vxazd5se] {
        padding: 12px 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 10px;
        color: #333333;
        background: white;
        transition: background-color 0.2s ease;
    }

        .country-list li:hover[b-72vxazd5se] {
            background-color: #f5f5f5;
        }

    .country-list .divider[b-72vxazd5se] {
        height: 1px;
        background: #e0e0e0;
        margin: 4px 0;
        padding: 0;
        cursor: default;
    }

    .country-list .flag-emoji[b-72vxazd5se] {
        font-size: 1.2em;
    }

/* Fade-in animation */
@keyframes fadeIn-b-72vxazd5se {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Checkbox inline group */
.checkbox-inline-group[b-72vxazd5se] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}

    .checkbox-inline-group label.label-heading[b-72vxazd5se] {
        font-weight: bold;
        font-size: 1.4rem;
        color: var(--brand-gold);
    }

/* Form submit container */
.form-submit-container[b-72vxazd5se] {
    text-align: center;
    margin-top: 1rem;
    padding-bottom: 1rem;
}

/* Recaptcha centering */
.center-recaptcha-container[b-72vxazd5se] {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .modal-content[b-72vxazd5se] {
        width: 95%;
        max-height: 90vh;
    }

    .country-list[b-72vxazd5se] {
        max-height: calc(90vh - 80px);
    }
}
/* _content/zShuttle.CustomerPortal.WebUI/Pages/SurveyPage.razor.rz.scp.css */
/* Add page margins */
body[b-559h29t78z], .page-wrapper[b-559h29t78z] {
    padding-left: 15px;
    padding-right: 15px;
}

.container[b-559h29t78z] {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Limit overall survey width */
.survey-container[b-559h29t78z] {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Question container wrapper */
.form-group[b-559h29t78z] {
    position: relative;
    margin-bottom: 1rem;
}

/* Question labels - positioned on border using wrapper approach */
.label-heading[b-559h29t78z] {
    display: inline-block;
    position: relative;
    color: var(--brand-blue); /* brand-blue */
    font-weight: 600;
    font-size: 0.9rem;
    background: white;
    padding: 0 8px;
    margin-left: 20px;
    margin-bottom: 0;
    width: fit-content;
    z-index: 10;
    line-height: 1.2;
}

/* Star rating containers with borders */
.star-rating[b-559h29t78z] {
    display: flex;
    gap: 5px;
    font-size: 30px;
    cursor: pointer;
    padding: 20px 15px 10px 15px;
}

.star[b-559h29t78z] {
    color: #ccc; /* Unselected: soft gray */
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    cursor: pointer;
}

    .star:focus[b-559h29t78z] {
        outline: 2px solid var(--brand-blue);
        outline-offset: 2px;
        border-radius: 4px;
    }

    .star.filled[b-559h29t78z] {
        color: var(--brand-blue-dark); /* Supershuttle Blue */
    }

        .star:hover[b-559h29t78z],
        .star.filled:hover[b-559h29t78z] {
            color: var(--brand-gold); /* Gold on hover */
        }

/* Field separator with full border */
.field-separator[b-559h29t78z] {
    border: 2px solid var(--brand-blue); /* brand-blue border */
    border-radius: 12px;
    padding: 15px;
    margin-top: -0.6rem; /* Negative margin pulls border up to overlap label */
    position: relative;
    background: white;
}

    /* Remove border from submit button container */
    .field-separator.d-flex[b-559h29t78z] {
        border: none;
        margin-top: 1rem;
        padding: 0;
    }

    /* Remove border from textarea inside field-separator */
    .field-separator textarea[b-559h29t78z],
    .field-separator .styled-input[b-559h29t78z] {
        border: none !important;
        padding: 10px !important;
        width: 100% !important;
        min-height: 100px !important;
        resize: vertical !important;
        font-family: inherit !important;
        font-size: 1rem !important;
        outline: none !important;
        background: transparent !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

        .field-separator textarea:focus[b-559h29t78z],
        .field-separator .styled-input:focus[b-559h29t78z],
        .field-separator textarea:hover[b-559h29t78z],
        .field-separator .styled-input:hover[b-559h29t78z] {
            border: none !important;
            outline: none !important;
            box-shadow: none !important;
        }

/* Rating text display */
.rating-text[b-559h29t78z] {
    display: block;
    width: 100%;
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-blue); /* brand-blue */
    text-align: center;
}

/* Address container and boxes */
.address-container[b-559h29t78z] {
    display: flex;
    align-items: stretch;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 0.75rem;
}

/* Read-only address boxes - lighter, non-interactive styling */
.address-box[b-559h29t78z] {
    flex: 1;
    padding: 20px 15px 12px 15px; /* Reduced vertical padding */
    border: 2px solid #DFE3EE; /* Lighter border for read-only look */
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #F8F9FA; /* Light gray background to show read-only */
    cursor: default; /* Not clickable */
    min-width: 0; /* Allow flex item to shrink below content size */
}

    .address-box p[b-559h29t78z] {
        margin: 0;
        color: #495057; /* Darker gray for readability but still muted */
        font-weight: 500;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Position h2 labels on the top border */
    .address-box h2[b-559h29t78z] {
        position: absolute;
        top: 0;
        left: 20px;
        transform: translateY(-50%);
        margin: 0;
        padding: 0 8px;
        background: #F8F9FA; /* Match box background */
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--brand-gold); /* Keep gold for these labels */
        z-index: 1;
    }

    .address-box h4[b-559h29t78z] {
        margin: 0 0 10px;
        color: #6c757d; /* Muted color for read-only */
    }

.address-arrow[b-559h29t78z] {
    font-size: 24px;
    color: var(--brand-blue); /* brand-blue */
    display: flex;
    align-items: center;
}

/* Validation messages */
.validation-message[b-559h29t78z] {
    color: #d9534f;
    font-size: 0.875em;
    display: block !important;
    margin-top: 0.5rem;
    padding: 0.25rem 0.5rem;
    background-color: #fff3cd;
    border-left: 3px solid #d9534f;
    border-radius: 4px;
}

/* Submit button */
.custom-submit-button[b-559h29t78z],
.btn-primary[b-559h29t78z] {
    background-color: var(--brand-blue) !important; /* brand-blue */
    border-color: var(--brand-blue) !important;
    color: white !important;
    text-align: center;
    min-width: 250px;
    padding: 14px 40px;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 50px;
}

    .custom-submit-button:hover[b-559h29t78z],
    .btn-primary:hover[b-559h29t78z] {
        background-color: var(--brand-blue-hover) !important; /* darker blue */
        border-color: var(--brand-blue-hover) !important;
    }

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    body[b-559h29t78z], .page-wrapper[b-559h29t78z] {
        padding-left: 10px;
        padding-right: 10px;
    }

    .label-heading[b-559h29t78z] {
        font-size: 0.85rem;
        margin-left: 15px;
    }

    .address-box h2[b-559h29t78z] {
        font-size: 0.8rem;
        left: 15px;
    }

    /* Stack addresses vertically on mobile */
    .address-container[b-559h29t78z] {
        flex-direction: column;
        gap: 5px;
        margin-bottom: 0.5rem;
    }

    .address-arrow[b-559h29t78z] {
        transform: rotate(90deg);
        justify-content: center;
        padding: 2px 0;
        font-size: 20px;
    }

    /* Reduce spacing between questions */
    .form-group[b-559h29t78z] {
        margin-bottom: 0.75rem;
    }

    .field-separator[b-559h29t78z] {
        margin-top: -0.5rem;
    }
}

@media (max-width: 480px) {
    body[b-559h29t78z], .page-wrapper[b-559h29t78z] {
        padding-left: 8px;
        padding-right: 8px;
    }

    .label-heading[b-559h29t78z] {
        font-size: 0.75rem;
        margin-left: 12px;
    }

    .address-box h2[b-559h29t78z] {
        font-size: 0.75rem;
        left: 12px;
    }

    .star-rating[b-559h29t78z] {
        font-size: 26px;
        padding: 15px 10px 8px 10px;
    }

    .field-separator[b-559h29t78z] {
        padding: 12px;
    }

    /* Further reduce spacing on small screens */
    .form-group[b-559h29t78z] {
        margin-bottom: 0.5rem;
    }

    .address-container[b-559h29t78z] {
        gap: 3px;
        margin-bottom: 0.4rem;
    }

    .address-arrow[b-559h29t78z] {
        padding: 0;
        font-size: 18px;
    }
}
/* _content/zShuttle.CustomerPortal.WebUI/Shared/MainLayout.razor.rz.scp.css */
.page[b-g2yf3umldw] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-g2yf3umldw] {
    flex: 1;
}

.sidebar[b-g2yf3umldw] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-g2yf3umldw] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-g2yf3umldw]  a, .top-row .btn-link[b-g2yf3umldw] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-g2yf3umldw] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-g2yf3umldw] {
        display: none;
    }

    .top-row.auth[b-g2yf3umldw] {
        justify-content: space-between;
    }

    .top-row a[b-g2yf3umldw], .top-row .btn-link[b-g2yf3umldw] {
        margin-left: 0;
    }
}
/* _content/zShuttle.CustomerPortal.WebUI/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-w6bmui4fp0] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-w6bmui4fp0] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-w6bmui4fp0] {
    font-size: 1.1rem;
}

.oi[b-w6bmui4fp0] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-w6bmui4fp0] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-w6bmui4fp0] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-w6bmui4fp0] {
        padding-bottom: 1rem;
    }

    .nav-item[b-w6bmui4fp0]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-w6bmui4fp0]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-w6bmui4fp0]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-w6bmui4fp0] {
        display: none;
    }

    .collapse[b-w6bmui4fp0] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
