@import '_content/LeafletForBlazor/LeafletForBlazor.bundle.scp.css';

/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-9cvz65wtd4] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-9cvz65wtd4] {
    flex: 1;
    background-color: #F5F6FA;
    display: flex;
    flex-direction: column;
}

.sidebar[b-9cvz65wtd4] {
    border-right: 1px solid #d6d5d5;
    transition: width 0.3s ease;
    background-color: white;
    z-index: 9999;
}

    .sidebar.collapsed[b-9cvz65wtd4] {
        width: 80px;
    }

.top-row[b-9cvz65wtd4] {
    background-color: white;
    border-bottom: 1px solid #d6d5d5;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    flex-shrink: 0;
}

    .top-row[b-9cvz65wtd4]  a, .top-row[b-9cvz65wtd4]  .btn-link {
        white-space: nowrap;
        margin-left: 1rem;
        text-decoration: none;
    }

        .top-row[b-9cvz65wtd4]  a:hover, .top-row[b-9cvz65wtd4]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-9cvz65wtd4]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

.left-content[b-9cvz65wtd4] {
    display: flex;
    align-items: center;
}

.right-content[b-9cvz65wtd4] {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.content-body[b-9cvz65wtd4] {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

/* Base h5 style (applies to all, then overridden by media queries) */
h5[b-9cvz65wtd4] {
    margin-top: 10px;
    line-height: 36px;
    font-weight: 600; /* Ensures boldness */
}

/* Adjustments for mobile devices */
@media (max-width: 767.98px) {
    .page[b-9cvz65wtd4] {
        flex-direction: column;
    }

    .sidebar[b-9cvz65wtd4] {
        width: 100%;
        height: auto;
        position: static;
        border-right: none;
        border-bottom: 1px solid #d6d5d5;
        overflow-x: hidden;
    }

        .sidebar.collapsed[b-9cvz65wtd4] {
            width: 100%;
            height: auto;
        }

    .top-row[b-9cvz65wtd4] {
        padding: 0 1rem;
    }

    /* Hide specific elements in right-content for mobile */
    .right-content .searchBar-input-container[b-9cvz65wtd4],
    .right-content .bi-bell-fill[b-9cvz65wtd4],
    .right-content img[b-9cvz65wtd4],
    .login-display-wrapper[b-9cvz65wtd4] {
        display: none;
    }

    /* Adjust gap in right-content to avoid extra space if many items are hidden */
    .right-content[b-9cvz65wtd4] {
        gap: 0; /* Remove gap when most items are hidden */
    }

    h5[b-9cvz65wtd4] {
        font-size: 18px; /* Bigger font size for mobile */
    }

    /* Make logout button bigger on mobile */
    .right-content .bi-box-arrow-right[b-9cvz65wtd4] {
        font-size: 28px; /* Increased size for mobile logout button */
    }
}

/* Adjustments for desktop devices */
@media (min-width: 768px) {
    .page[b-9cvz65wtd4] {
        flex-direction: row;
    }

    .sidebar[b-9cvz65wtd4] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
        flex-shrink: 0;
    }

        .sidebar.collapsed[b-9cvz65wtd4] {
            width: 80px;
        }

    .top-row[b-9cvz65wtd4] {
        position: sticky;
        top: 0;
        z-index: 9998;
        padding-left: 2rem;
        padding-right: 1.5rem;
    }

        .top-row.auth[b-9cvz65wtd4]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .searchBar-input-container[b-9cvz65wtd4] {
        max-width: 360px;
        display: flex; /* Ensure it's displayed on desktop */
    }

    h5[b-9cvz65wtd4] {
        font-size: 24px; /* Original font size for desktop */
    }

    /* Default size for desktop logout button (if needed, otherwise inherits) */
    .right-content .bi-box-arrow-right[b-9cvz65wtd4] {
        /* You can set a specific font-size here for desktop if it differs from default text size */
        /* For example: font-size: 16px; */
    }
}

/* Search Bar Styles (only apply when visible) */
.searchBar[b-9cvz65wtd4] {
    width: 100%;
    padding: 10px 20px;
    border: 2px solid #DFEAF2;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: border 0.3s ease-in-out, height 0.2s ease-in-out;
    color: #101010;
}

    .searchBar:focus[b-9cvz65wtd4] {
        border-color: #FE6A6E;
        background-color: #FFFFFF;
    }

.primary-searchBar[b-9cvz65wtd4] {
    background-color: #F5F6FA;
    border: 1px solid #F5F6FA;
}

    .primary-searchBar[b-9cvz65wtd4]::placeholder {
        color: #787878;
        transition: color 0.3s ease-in-out;
    }

    .primary-searchBar:focus[b-9cvz65wtd4]::placeholder {
        color: #787878;
    }

.searchBar-input-container[b-9cvz65wtd4] {
    position: relative;
    display: flex; /* Default display for desktop */
    align-items: center;
    max-height: 35px;
}

    .searchBar-input-container input[b-9cvz65wtd4] {
        width: 100%;
        padding-right: 40px;
    }

    .searchBar-input-container i[b-9cvz65wtd4] {
        position: absolute;
        right: 15px;
        font-size: 14px;
        font-weight: 400;
        color: #787878;
        pointer-events: none;
    }

#blazor-error-ui[b-9cvz65wtd4] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-9cvz65wtd4] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }


.notification-badge[b-9cvz65wtd4] {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    padding: 3px 7px;
}

/*.mud-snackbar {
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}*/

 Info snackbar 
.mud-snackbar-info[b-9cvz65wtd4] {
    background-color: red !important;  default blue 
}

/* Success snackbar */
/*.mud-snackbar-success {
    background-color: #4caf50 !important;
}*/

/* Warning snackbar */
/*.mud-snackbar-warning {
    background-color: #ff9800 !important;
}*/

/* Error snackbar */
/*.mud-snackbar-error {
    background-color: #f44336 !important;
}*/
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-35b49s1iaq] {
    appearance: none;
    cursor: pointer;
    width: 56px;
    height: 40px;
    color: transparent;
    position: absolute;
    top: 8px;
    right: 16px;
    border: none; /* Removed the red border */
    /* Updated background for a clear, professional hamburger icon */
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23000000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem transparent;
    /* Explanation of background update:
       - stroke='%23000000' changes the SVG lines to black for better contrast.
       - transparent for the background color ensures no solid box color.
    */
}

    .navbar-toggler:checked[b-35b49s1iaq] {
        background-color: rgba(0, 0, 0, 0.1); /* A subtle background when the menu is open */
    }

.top-row[b-35b49s1iaq] {
    height: 56px;
    justify-content: center;
    align-content: center;
}

.navbar-brand[b-35b49s1iaq] {
    font-size: 18px;
}

.bi[b-35b49s1iaq] {
    font-size: 22px;
    margin-right: 10px;
}

.nav-item[b-35b49s1iaq]  .nav-link:not(.active) .bi {
    filter: brightness(1);
}

.nav-scrollable[b-35b49s1iaq] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-35b49s1iaq] {
    display: block;
}

.sidebar-footer[b-35b49s1iaq] {
    display: none;
}

@media (min-width: 641px) {
    .navbar-toggler[b-35b49s1iaq] {
        display: none; /* Hide the hamburger on desktop */
    }

    .nav-scrollable[b-35b49s1iaq] {
        display: block;
        height: calc(100vh - 56px);
        overflow-y: auto;
    }

    .sidebar-footer[b-35b49s1iaq] {
        bottom: 0;
        width: 100%;
        padding: 10px;
        text-align: center;
        font-size: 11px;
        color: #AFADAD;
        background-color: #FFFFFF;
        display: block;
    }
}

.nav-item[b-35b49s1iaq] {
    font-size: 16px;
    padding-bottom: 8px;
    margin-right: 10px;
}

    .nav-item:first-of-type[b-35b49s1iaq] {
        padding-top: 16px;
    }

    .nav-item:last-of-type[b-35b49s1iaq] {
        padding-bottom: 16px;
    }

    .nav-item[b-35b49s1iaq]  .nav-link {
        color: #AFADAD;
        background: none;
        border: none;
        border-radius: 15px;
        height: 48px;
        display: flex;
        align-items: center;
        line-height: 48px;
        width: 100%;
        transition: background 0.3s ease, color 0.3s ease;
        margin-left: 12px;
    }

        .nav-item[b-35b49s1iaq]  .nav-link:not(.active):hover {
            background-color: #D3D3D3;
            border-radius: 15px;
            color: white;
        }

.sidebar[b-35b49s1iaq] {
    border-right: 1px solid #d6d5d5;
    transition: width 0.3s ease;
}

    .sidebar.collapsed[b-35b49s1iaq] {
        width: 80px;
    }

        .sidebar.collapsed .nav-item[b-35b49s1iaq] {
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .sidebar.collapsed .nav-item[b-35b49s1iaq]  .nav-link {
                margin-left: 0;
            }

                .sidebar.collapsed .nav-item[b-35b49s1iaq]  .nav-link:not(.active):hover {
                    background-color: transparent;
                    color: gray;
                }

            .sidebar.collapsed .nav-item .bi[b-35b49s1iaq] {
                display: block;
                position: static;
            }

            .sidebar.collapsed .nav-item span[b-35b49s1iaq] {
                display: none;
            }

            .sidebar.collapsed .nav-item[b-35b49s1iaq]  a.active {
                border-radius: 15px;
                color: #EB0A1E;
                position: static;
            }

    .sidebar:not(.collapsed) .nav-item[b-35b49s1iaq]  a.active {
        background-color: #EB0A1E;
        border-radius: 15px;
        color: white;
        position: relative;
    }

        .sidebar:not(.collapsed) .nav-item[b-35b49s1iaq]  a.active::after {
            content: "";
            position: absolute;
            left: -30px;
            height: 90%;
            width: 12px;
            background-color: #EB0A1E;
            border-radius: 0 15px 15px 0;
        }

.submenu[b-35b49s1iaq] {
    margin: 10px 0 0 40px;
    padding-left: 10px;
    border-left: 3px solid #AFADAD;
    display: flex;
    flex-direction: column;
}

.submenu-item[b-35b49s1iaq],
.submenu-link[b-35b49s1iaq] {
    font-size: 16px;
    padding-bottom: 8px;
    margin-right: 10px;
}

    .submenu-item[b-35b49s1iaq]  .submenu-link {
        color: #AFADAD;
        background: none;
        border: none;
        border-radius: 15px;
        height: 48px;
        display: flex;
        align-items: center;
        line-height: 48px;
        width: 100%;
        transition: background 0.3s ease, color 0.3s ease;
        margin-left: 12px;
    }

        .submenu-item[b-35b49s1iaq]  .submenu-link:not(.active):hover {
            color: #EB0A1E;
        }

.sidebar.collapsed .submenu[b-35b49s1iaq] {
    display: none !important;
}

.sidebar:not(.collapsed) .submenu-item[b-35b49s1iaq]  a.active {
    color: #EB0A1E;
    position: relative;
}

    .sidebar:not(.collapsed) .submenu-item[b-35b49s1iaq]  a.active::after {
        content: "";
        position: absolute;
        left: -25px;
        height: 100%;
        width: 4px;
        background-color: #EB0A1E;
        border-radius: 2px;
    }

.menu-toggle[b-35b49s1iaq] {
    color: #AFADAD;
    background: none;
    border: none;
    border-radius: 15px;
    height: 48px;
    display: flex;
    align-items: center;
    line-height: 48px;
    width: 100%;
    transition: background 0.3s ease, color 0.3s ease;
    margin-left: 12px;
    padding: 0 10px;
    cursor: pointer;
}

    .menu-toggle:hover[b-35b49s1iaq] {
        color: white;
        background: #D3D3D3;
    }

    .menu-toggle .bi[b-35b49s1iaq] {
        font-size: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 5px;
    }

.sidebar.collapsed .menu-toggle[b-35b49s1iaq] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

    .sidebar.collapsed .menu-toggle:hover:not(.active)[b-35b49s1iaq] {
        background-color: transparent;
        color: gray;
    }

    .sidebar.collapsed .menu-toggle .bi-box[b-35b49s1iaq] {
        display: block;
        font-size: 22px;
        margin-left: 8px;
    }

    .sidebar.collapsed .menu-toggle span[b-35b49s1iaq] {
        display: none;
    }

    .sidebar.collapsed .menu-toggle a.active[b-35b49s1iaq] {
        border-radius: 15px;
        color: #EB0A1E;
        position: static;
    }

.sidebar:not(.collapsed) .submenu-item .submenu-link.active + .menu-toggle[b-35b49s1iaq] {
    background-color: #EB0A1E;
    border-radius: 15px;
    color: white;
    position: relative;
}

    .sidebar:not(.collapsed) .submenu-item .submenu-link.active + .menu-toggle[b-35b49s1iaq]::after {
        content: "";
        position: absolute;
        left: -30px;
        height: 90%;
        width: 12px;
        background-color: #EB0A1E;
        border-radius: 0 15px 15px 0;
    }
/* /Components/Pages/Approvals/Approvals.razor.rz.scp.css */
body[b-nxiujjladh] {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
}

.card-title-container[b-nxiujjladh] {
    padding: 30px 25px;
    margin: 20px;
    border-radius: 15px;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: block;
    text-align: left;
}

    .card-title-container > p:first-child[b-nxiujjladh] {
        text-align: center;
        margin-bottom: 15px;
    }

    .card-title-container > p:last-child[b-nxiujjladh] {
        text-align: center;
        margin-top: 20px;
    }

.section-title[b-nxiujjladh] {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    display: block;
    text-align: left;
}

.body_section[b-nxiujjladh] {
    display: flex;
    flex-direction: column;
    padding: 20px 25px;
    margin-bottom: 20px;
    gap: 25px;
    width: 100%;
    box-sizing: border-box;
}

.content-wrapper[b-nxiujjladh] {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    margin: 0 auto;
}

.component-row[b-nxiujjladh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.left-column[b-nxiujjladh] {
    flex-shrink: 0;
    text-align: left;
}

.right-column[b-nxiujjladh] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap; /* Prevent wrapping */
    flex-grow: 1;
    justify-content: flex-end;
}

.trip-accordion-wrapper[b-nxiujjladh] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.trip-accordion-item[b-nxiujjladh] {
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    margin-bottom: 10px;
}

    .trip-accordion-item:hover[b-nxiujjladh] {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

.accordion-header[b-nxiujjladh] {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background-color: #ffffff;
    border-bottom: 1px solid #edf2f7;
    transition: background-color 0.2s ease;
}

    .accordion-header.active[b-nxiujjladh] {
        background-color: #f7fafc;
    }

    .accordion-header:hover[b-nxiujjladh] {
        background-color: #f7fafc;
    }

.accordion-title-group[b-nxiujjladh] {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: flex-start;
}

.accordion-title[b-nxiujjladh] {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.accordion-date[b-nxiujjladh] {
    font-size: 14px;
    color: #718096;
    margin-top: 4px;
    white-space: nowrap;
}

.accordion-status-and-icon[b-nxiujjladh] {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    white-space: nowrap;
}

.accordion-mini-rating[b-nxiujjladh] {
    display: flex;
    align-items: center;
    gap: 3px;
}

.mini-star[b-nxiujjladh] {
    font-size: 14px;
}

.status-text[b-nxiujjladh] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    font-size: 0.9em;
    transition: background-color 2.4s ease, color 2.4s ease, border-color .4s ease;
}

    .status-text.completed[b-nxiujjladh] {
        background-color: #e6ffe6;
        color: #28a745;
        border: 1px solid #28a745;
    }

    .status-text.pending[b-nxiujjladh] {
        background-color: #fff8e6;
        color: #ffc107;
        border: 1px solid #ffc107;
    }

    .status-text.ongoing[b-nxiujjladh] {
        background-color: #e0f2fe;
        color: #2196f3;
        border: 1px solid #2196f3;
    }

    .status-text.clickable-pending[b-nxiujjladh] {
        cursor: pointer;
        transition: background-color 0.2s ease, border-color 0.2s ease;
    }

        .status-text.clickable-pending:hover[b-nxiujjladh] {
            background-color: #ffe08a;
            border-color: #e0a800;
        }

    .status-text.status-for-pickup[b-nxiujjladh] {
        color: #6c757d;
        background-color: #e9ecef;
        border: 1px solid #6c757d;
    }

    .status-text.status-for-dropoff[b-nxiujjladh] {
        color: #ffc107;
        background-color: #fff3cd;
        border: 1px solid #ffc107;
    }

@keyframes status-pulse-b-nxiujjladh {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.status-text.animate-pulse[b-nxiujjladh] {
    animation: status-pulse-b-nxiujjladh 0.6s ease-out;
}

.accordion-icon[b-nxiujjladh] {
    font-size: 18px;
    color: #a0aec0;
    transition: transform 0.3s ease;
}

    .accordion-icon.rotate[b-nxiujjladh] {
        transform: rotate(180deg);
    }

.accordion-content[b-nxiujjladh] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
}

    .accordion-content.expanded[b-nxiujjladh] {
        max-height: 500px;
        padding: 20px 25px;
    }

.trip-route[b-nxiujjladh] {
    display: flex;
    align-items: center;
    font-size: 1.2em;
    margin-bottom: 5px;
    color: #2d3748;
    flex-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.route-icon[b-nxiujjladh] {
    font-size: 1.1em;
    margin-right: 5px;
    color: #e74c3c;
    flex-shrink: 0;
}

.trip-route .route-icon + .bi-arrow-right + .route-icon[b-nxiujjladh] {
    margin-left: 8px;
}

.route-arrow[b-nxiujjladh] {
    font-size: 1em;
    margin: 0 8px;
    color: #4a5568;
    flex-shrink: 0;
}

.trip-details-line[b-nxiujjladh] {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 0.9em;
    color: #6c757d;
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.approver-left-line[b-nxiujjladh] {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    font-size: 0.9em;
    color: #6c757d;
    gap: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.driver-name[b-nxiujjladh] {
    margin: 0;
    white-space: nowrap;
    font-weight: 500;
}

.rated-section[b-nxiujjladh] {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.rated-heading[b-nxiujjladh] {
    font-size: 16px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 10px;
}

.overall-rating-display[b-nxiujjladh] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.overall-rating-label[b-nxiujjladh] {
    color: #4a5568;
    font-size: 16px;
    font-weight: 500;
}

.bi[b-nxiujjladh] {
    font-family: "bootstrap-icons" !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.star-yellow[b-nxiujjladh] {
    color: #ffc107;
}

.star-gray[b-nxiujjladh] {
    color: #ccc;
}

.star-blue[b-nxiujjladh] {
    color: #4299e1;
}

.overall-rating-value[b-nxiujjladh] {
    font-size: 14px;
    color: #718096;
    font-weight: 500;
}

.individual-ratings-summary[b-nxiujjladh] {
    font-size: 13px;
    color: #a0aec0;
    margin-top: 8px;
    line-height: 1.4;
}

.trip-comment-display[b-nxiujjladh] {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
}

.comment-label[b-nxiujjladh] {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 5px;
    display: block;
}

.comment-text[b-nxiujjladh] {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
    background-color: #f7fafc;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #edf2f7;
}

.rate-trip-button[b-nxiujjladh] {
    display: none;
}

.no-trips-message[b-nxiujjladh] {
    color: #718096;
    font-size: 18px;
    margin-top: 40px;
    text-align: center;
    width: 100%;
}

.modal-overlay[b-nxiujjladh] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 15px;
    box-sizing: border-box;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.modal-container[b-nxiujjladh] {
    background-color: #FFFFFF;
    border-radius: 15px;
    width: 95%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    box-sizing: border-box;
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-container-cancel-booking[b-nxiujjladh] {
    background-color: #FFFFFF;
    border-radius: 15px;
    width: 95%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    box-sizing: border-box;
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-content-area[b-nxiujjladh] {
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.modal-header[b-nxiujjladh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #edf2f7;
    position: relative;
}

.modal-title-text[b-nxiujjladh] {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    text-align: center;
}

.close-modal-icon[b-nxiujjladh] {
    cursor: pointer;
    font-size: 24px;
    color: #a0aec0;
    transition: color 0.2s ease;
    position: static;
    top: auto;
    right: auto;
}

    .close-modal-icon:hover[b-nxiujjladh] {
        color: #2d3748;
    }

.modal-rating-section[b-nxiujjladh] {
    margin-bottom: 25px;
    text-align: center;
}

.modal-rating-label[b-nxiujjladh] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

    .modal-rating-label.required-field[b-nxiujjladh]::after {
        content: ' *';
        color: #dc3545;
        margin-left: 4px;
    }

.icon-warning[b-nxiujjladh] {
    font-size: 84px;
    color: #EB0A1E;
    text-align: center;
    margin-bottom: 20px;
}

.icon-success[b-nxiujjladh] {
    font-size: 84px;
    color: #4AD991;
    text-align: center;
    margin-bottom: 20px;
}

.star-input-group[b-nxiujjladh] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

    /* Base size for stars */
    .star-input-group .star-input[b-nxiujjladh] {
        font-size: 30px;
    }

.star-input[b-nxiujjladh] {
    cursor: pointer;
    transition: transform 100ms ease-in-out, color 0.2s ease;
}

    .star-input:hover[b-nxiujjladh] {
        transform: scale(1.15);
        color: #f6ad55;
    }

    .star-input.selected[b-nxiujjladh] {
        color: #f6ad55;
        transform: scale(1.05);
        animation: star-selected-pulse-b-nxiujjladh 0.3s ease-out;
    }

@keyframes star-selected-pulse-b-nxiujjladh {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.05);
    }
}

.modal-overall-rating-display[b-nxiujjladh] {
    margin-top: 30px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #e2e8f0;
    border-radius: 10px;
    border: 1px solid #cbd5e0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.star-display-group[b-nxiujjladh] {
    display: flex;
    align-items: center;
    /* This will center the stars in the overall rating section */
    justify-content: center;
    /* This creates space between stars */
    gap: 12px;
}

.overall-star-display[b-nxiujjladh] {
    font-size: 32px;
}

.overall-rating-value-large[b-nxiujjladh] {
    margin-left: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
}

.comment-textarea[b-nxiujjladh] {
    width: 100%;
    min-height: 100px;
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #4a5568;
    resize: vertical;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .comment-textarea:focus[b-nxiujjladh] {
        outline: none;
        border-color: #4299e1;
        box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.4);
    }

    .comment-textarea:required:invalid[b-nxiujjladh] {
        border-color: #dc3545;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    }

.validation-message[b-nxiujjladh] {
    color: #dc3545;
    font-size: 0.85em;
    margin-top: 5px;
}

.modal-actions-group[b-nxiujjladh] {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    flex-shrink: 0;
    padding-top: 15px;
    border-top: 1px solid #edf2f7;
}

.modal-skip-button[b-nxiujjladh] {
    display: none;
}

.modal-cancel-button[b-nxiujjladh] {
    background-color: #E4ECF7;
    color: #505780;
    border: 1px solid #E4ECF7;
    cursor: pointer;
    font-weight: 600;
    border-radius: 100px;
    padding: 12px 20px;
    font-size: 12px;
    height: 36px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

    .modal-cancel-button:hover[b-nxiujjladh] {
        background-color: #d8dde3;
        transform: translateY(-2px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .modal-cancel-button:focus[b-nxiujjladh] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(160, 174, 192, 0.6);
    }

.modal-submit-button[b-nxiujjladh] {
    background-color: #EB0A1A;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 100px;
    padding: 12px 20px;
    font-size: 12px;
    height: 36px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

    .modal-submit-button:not(:disabled):hover[b-nxiujjladh] {
        background-color: #A90512;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(135, 135, 135, 0.6);
    }

    .modal-submit-button:not(:disabled):focus[b-nxiujjladh] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(135, 135, 135, 0.6);
    }

    .modal-submit-button:disabled[b-nxiujjladh] {
        background-color: #cccccc;
        color: #666666;
        box-shadow: none;
        cursor: not-allowed;
        pointer-events: none;
        transform: none;
        border: none;
    }

.filter-and-title-group[b-nxiujjladh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-dropdown-container[b-nxiujjladh] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-label[b-nxiujjladh] {
    font-size: 15px;
    font-weight: 600;
    color: #4a5568;
    white-space: nowrap;
}

.filter-dropdown[b-nxiujjladh] {
    padding: 10px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #2d3748;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23a0aec0%22%20d%3D%22M287%2069.9H5.4c-7.2%200-11.4%208.5-7%2014.2l140.7%20140.8c4.6%204.6%2012.3%204.6%2016.9%200L294%2084.1c4.4-5.7.2-14.2-7-14.2z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .filter-dropdown:hover[b-nxiujjladh] {
        border-color: #a0aec0;
    }

    .filter-dropdown:focus[b-nxiujjladh] {
        outline: none;
        border-color: #4299e1;
        box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.4);
    }

.pagination-controls[b-nxiujjladh] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 8px;
}

.pagination-button[b-nxiujjladh] {
    background: transparent;
    color: #333;
    border: none;
    padding: 8px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s, border-color 0.2s;
    min-width: 32px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .pagination-button:hover:not(:disabled)[b-nxiujjladh] {
        background-color: transparent;
        color: #B5B5B5;
    }

    .pagination-button:disabled[b-nxiujjladh] {
        background-color: transparent;
        color: #B5B5B5;
        cursor: not-allowed;
    }

    .pagination-button.active-page[b-nxiujjladh] {
        background: #EB0A1A;
        color: #FFFFFF;
        font-weight: 500;
    }

        .pagination-button.active-page:hover[b-nxiujjladh] {
            background: #A90512;
            color: #FFFFFF;
        }

.pagination-navigate-button[b-nxiujjladh] {
    font-size: 16px;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: background 0.3s ease;
    background: transparent;
}

    .pagination-navigate-button:hover:not(:disabled)[b-nxiujjladh] {
        background-color: #F4F4F4;
        color: #101010;
    }

    .pagination-navigate-button:disabled[b-nxiujjladh] {
        background-color: transparent;
        color: #B5B5B5;
        cursor: not-allowed;
    }

    .pagination-navigate-button.active-page[b-nxiujjladh] {
        background: #EB0A1A;
        color: #FFFFFF;
        font-weight: 500;
    }

        .pagination-navigate-button.active-page:hover[b-nxiujjladh] {
            background: #A90512;
            color: #FFFFFF;
        }


.mini-dashboard[b-nxiujjladh] {
    background-color: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.dashboard-title[b-nxiujjladh] {
    font-size: 24px;
    color: #2d3748;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.dashboard-stats-grid[b-nxiujjladh] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-content: center;
}

.dashboard-stat-item[b-nxiujjladh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border: 1px solid #ebf4ff;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease-in-out;
}

    .dashboard-stat-item:hover[b-nxiujjladh] {
        transform: translateY(-3px);
    }

.dashboard-icon[b-nxiujjladh] {
    font-size: 36px;
    color: red;
    margin-bottom: 10px;
}

.stat-content[b-nxiujjladh] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value[b-nxiujjladh] {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 5px;
}

.stat-label[b-nxiujjladh] {
    font-size: 14px;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.snackbar[b-nxiujjladh] {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    position: fixed;
    z-index: 1050;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: 17px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: visibility 0.5s, opacity 0.5s ease-in-out;
}

    .snackbar.show[b-nxiujjladh] {
        visibility: visible;
        opacity: 1;
    }

.snackbar-success[b-nxiujjladh] {
    background-color: #4CAF50;
}

.snackbar-error[b-nxiujjladh] {
    background-color: #f44336;
}

@media (max-width: 767px) {
    .dashboard-stats-grid[b-nxiujjladh] {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

    .dashboard-stat-item[b-nxiujjladh] {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 15px;
        min-height: 120px;
    }

    .dashboard-icon[b-nxiujjladh] {
        font-size: 30px;
        margin-bottom: 2px;
    }

    .component-row[b-nxiujjladh] {
        flex-direction: column;
        align-items: stretch;
    }

    .right-column[b-nxiujjladh] {
        flex-direction: column;
        align-items: stretch;
    }

        .right-column > *[b-nxiujjladh] {
            width: 100%;
        }

    .stat-content[b-nxiujjladh] {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .stat-value[b-nxiujjladh] {
        font-size: 20px;
        margin-bottom: 0;
    }

    .stat-label[b-nxiujjladh] {
        font-size: 11px;
        line-height: 1.2;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 600px) {
    .card-title-container[b-nxiujjladh] {
        margin: 10px;
        padding: 20px;
    }

    .filter-and-title-group[b-nxiujjladh] {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .approver-left-line[b-nxiujjladh] {
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
    }

    .accordion-header[b-nxiujjladh] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 20px;
    }

    .accordion-title-group[b-nxiujjladh] {
        width: 100%;
        margin-right: 0;
    }

    .accordion-status-and-icon[b-nxiujjladh] {
        width: 100%;
        justify-content: flex-end;
        margin-top: 10px;
    }

    .modal-container[b-nxiujjladh] {
        width: 95%;
        max-height: calc(100vh - 20px);
        max-height: calc(100dvh - 20px);
    }

    .modal-container-cancel-booking[b-nxiujjladh] {
        width: 95%;
        max-height: calc(100vh - 20px);
        max-height: calc(100dvh - 20px);
    }

    .modal-header[b-nxiujjladh] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }

    .modal-title-text[b-nxiujjladh] {
        font-size: 14px;
    }

    .close-modal-icon[b-nxiujjladh] {
        position: absolute;
        top: 5px;
        right: 5px;
        font-size: 18px;
    }

    .modal-content-area[b-nxiujjladh] {
        padding: 15px;
    }

    .modal-rating-section[b-nxiujjladh] {
        margin-bottom: 15px;
    }

    .modal-rating-label[b-nxiujjladh] {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .star-input-group[b-nxiujjladh] {
        gap: 8px;
    }

        .star-input-group .star-input[b-nxiujjladh] {
            font-size: 28px;
        }

    .modal-overall-rating-display[b-nxiujjladh] {
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 15px;
    }

    .overall-star-display[b-nxiujjladh] {
        font-size: 26px;
    }

    .overall-rating-value-large[b-nxiujjladh] {
        font-size: 20px;
    }

    .comment-textarea[b-nxiujjladh] {
        min-height: 80px;
        padding: 10px 12px;
        font-size: 14px;
    }

    .modal-actions-group[b-nxiujjladh] {
        align-items: stretch;
        gap: 8px;
        margin-top: 20px;
        padding-top: 10px;
    }

    .modal-skip-button[b-nxiujjladh],
    .modal-cancel-button[b-nxiujjladh],
    .modal-submit-button[b-nxiujjladh] {
        padding: 10px 15px;
        font-size: 12px;
    }

    .accordion-content.expanded .rated-heading[b-nxiujjladh] {
        font-size: 15px;
    }

    .accordion-content.expanded .overall-rating-label[b-nxiujjladh] {
        font-size: 14px;
    }

    .accordion-content.expanded .overall-star-display[b-nxiujjladh] {
        font-size: 26px;
    }

    .accordion-content.expanded .individual-ratings-summary[b-nxiujjladh] {
        font-size: 12px;
    }

    .accordion-content.expanded .comment-label[b-nxiujjladh] {
        font-size: 13px;
    }

    .accordion-content.expanded .comment-text[b-nxiujjladh] {
        font-size: 13px;
    }

    .accordion-content.expanded .unrated-message[b-nxiujjladh] {
        font-size: 14px;
    }

    .accordion-content.expanded[b-nxiujjladh] {
        padding: 15px 20px;
    }

    .trip-route[b-nxiujjladh] {
        font-size: 0.9em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .route-icon[b-nxiujjladh] {
        font-size: 0.8em;
        margin-right: 2px;
    }

    .trip-route .route-icon + .bi-arrow-right + .route-icon[b-nxiujjladh] {
        margin-left: 4px;
    }

    .route-arrow[b-nxiujjladh] {
        font-size: 0.7em;
        margin: 0 4px;
    }

    .trip-details-line[b-nxiujjladh] {
        font-size: 0.75em;
        gap: 2px;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }

    .accordion-date[b-nxiujjladh] {
        font-size: 0.75em;
    }
}

@media (max-width: 480px) {
    .pagination-button[b-nxiujjladh] {
        padding: 6px 10px;
        font-size: 12px;
        min-width: unset;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pagination-navigate-button[b-nxiujjladh] {
        padding: 6px 10px;
        font-size: 12px;
        min-width: unset;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .trip-route[b-nxiujjladh] {
        font-size: 0.85em;
    }

    .trip-details-line[b-nxiujjladh] {
        font-size: 0.7em;
    }

    .accordion-date[b-nxiujjladh] {
        font-size: 0.75em;
    }
}

@media (max-width: 420px) {
    .dashboard-stats-grid[b-nxiujjladh] {
        gap: 8px;
        padding: 0 5px;
    }

    .dashboard-stat-item[b-nxiujjladh] {
        min-height: 100px;
        padding: 10px;
    }

    .dashboard-icon[b-nxiujjladh] {
        font-size: 26px;
        margin-bottom: 1px;
    }

    .stat-value[b-nxiujjladh] {
        font-size: 18px;
    }

    .stat-label[b-nxiujjladh] {
        font-size: 10px;
    }

    .modal-container[b-nxiujjladh] {
        padding: 10px;
    }

    .modal-content-area[b-nxiujjladh] {
        padding: 15px;
    }

    .modal-title-text[b-nxiujjladh] {
        font-size: 12px;
    }

    .modal-cancel-button[b-nxiujjladh],
    .modal-submit-button[b-nxiujjladh] {
        padding: 8px 12px;
        font-size: 14px;
    }
}


/* Pill Button Styles */

.normal-pill[b-nxiujjladh] {
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 8px 12px;
    height: 26px;
}

.approvals[b-nxiujjladh] {
    background-color: #534FFF;
    color: #FFFFFF;
}

.success[b-nxiujjladh] {
    background-color: #4AD991;
    color: #FFFFFF;
}

.warning[b-nxiujjladh] {
    background-color: #FCC23C;
    color: #FFFFFF;
}

.danger[b-nxiujjladh] {
    background-color: #FD5454;
    color: #FFFFFF;
}

.cancelled[b-nxiujjladh] {
    background-color: lightgray;
    color: #FFFFFF;
}

.details-grid[b-nxiujjladh] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    font-size: 14px;
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    align-items: start;
}

.details-grid-items[b-nxiujjladh] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
}

.badge-status[b-nxiujjladh] {
    background-color: #5b48f2;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
}

.table-responsive[b-nxiujjladh] {
    overflow-x: auto;
    margin-top: 20px;
}

.mt-3[b-nxiujjladh] {
    margin-top: 1rem;
}

.mt-4[b-nxiujjladh] {
    margin-top: 1.5rem;
}

/* Input & Textarea Styles */
input[b-nxiujjladh], textarea[b-nxiujjladh] {
    width: 100%;
    max-width: auto;
    padding: 10px 20px;
    border: 1px solid #DFEAF2;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: border 0.3s ease-in-out, height 0.2s ease-in-out;
    color: #101010;
}

/* Textarea Specific Styles */
textarea[b-nxiujjladh] {
    height: 123px;
    min-height: 123px;
    max-height: 300px;
    resize: vertical;
    border-radius: 20px;
    overflow-y: auto;
    display: block;
    transition: border 0.3s ease-in-out;
}

    input[b-nxiujjladh]::placeholder, textarea[b-nxiujjladh]::placeholder {
        color: #718EBF;
        transition: color 0.3s ease-in-out;
    }

    input:focus[b-nxiujjladh], textarea:focus[b-nxiujjladh] {
        border-color: #FE6A6E;
    }

        input:focus[b-nxiujjladh]::placeholder, textarea:focus[b-nxiujjladh]::placeholder {
            color: #718EBF;
        }

    /* Disabled Input & Textarea Styles */
    input:disabled[b-nxiujjladh], textarea:disabled[b-nxiujjladh] {
        background-color: #EBF2FA !important;
        color: #A0A0A0;
        border: 1px solid #EBF2FA;
        cursor: not-allowed;
        opacity: 0.6;
        pointer-events: none;
        user-select: none;
    }

.textarea-container[b-nxiujjladh] {
    position: relative;
    width: 100%;
}

#charCounter[b-nxiujjladh] {
    position: absolute;
    bottom: -20px;
    right: 5px;
    font-size: 12px;
    font-weight: 400;
    color: #89939E;
}

/* Error Styling */
.input-error[b-nxiujjladh] {
    background-color: #FFE3E3;
    border: 1px solid #FFE3E3;
}

.status-message[b-nxiujjladh] {
    font-size: 12px;
    font-weight: 400;
    position: absolute;
    bottom: -20px;
    left: 5px;
}

/* Wrapper for inputs */
.input-wrapper[b-nxiujjladh] {
    position: relative;
    width: 100%;
}

.vetical-text[b-nxiujjladh] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.horizontal-text[b-nxiujjladh] {
    display: flex;
    align-items: center;
    gap: 8px;
}


/* Table Styles */

table[b-nxiujjladh], .custom-table[b-nxiujjladh] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

    th[b-nxiujjladh], .custom-table th[b-nxiujjladh] {
        font-size: 16px;
        font-weight: 600;
        padding: 16px 22px;
        text-align: center;
    }

    td[b-nxiujjladh], .custom-table td[b-nxiujjladh] {
        font-size: 16px;
        font-weight: 400;
        padding: 16px 22px;
        text-align: center;
        border-bottom: 1px solid #DCDCDC;
    }

table[b-nxiujjladh], th[b-nxiujjladh], td[b-nxiujjladh], .custom-table[b-nxiujjladh] {
    vertical-align: middle;
}

.custom-thead[b-nxiujjladh] {
    background-color: #F1F4F9;
}

    .custom-thead tr:first-child th:first-child[b-nxiujjladh] {
        border-top-left-radius: 20px;
    }

    .custom-thead tr:first-child th:last-child[b-nxiujjladh] {
        border-top-right-radius: 20px;
    }

    .custom-thead tr:last-child th:first-child[b-nxiujjladh] {
        border-bottom-left-radius: 20px;
    }

    .custom-thead tr:last-child th:last-child[b-nxiujjladh] {
        border-bottom-right-radius: 20px;
    }

.custom-table th:not(:last-child)[b-nxiujjladh],
.custom-table td:not(:last-child)[b-nxiujjladh] {
    border-right: 1px solid #DCDCDC;
}

tbody tr:hover[b-nxiujjladh] {
    background-color: #F6F6F6;
}

.custom-tbody tr:nth-child(odd)[b-nxiujjladh] {
    background-color: #FFFFFF;
}

.custom-tbody tr:nth-child(even)[b-nxiujjladh] {
    background-color: #F6F6F6;
}

/* Dropdown Styles */

select[b-nxiujjladh] {
    width: 100%;
    max-width: auto;
    padding: 10px 20px;
    border: 1px solid #DFEAF2;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: border 0.3s ease-in-out, height 0.2s ease-in-out;
    color: #718EBF;
    background-color: white;
    appearance: none;
}

    select:focus[b-nxiujjladh] {
        border-color: #FE6A6E;
    }

    select:not(:disabled):has(option:checked:not(:disabled))[b-nxiujjladh] {
        color: #101010;
    }

    select:disabled[b-nxiujjladh] {
        background-color: #EBF2FA !important;
        color: #A0A0A0;
        border: 1px solid #EBF2FA;
        cursor: not-allowed;
        opacity: 0.6;
        pointer-events: none;
        user-select: none;
    }

.select-input-container[b-nxiujjladh] {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 200px;
}

    .select-input-container select[b-nxiujjladh] {
        width: 100%;
        padding-right: 40px;
    }

    .select-input-container i[b-nxiujjladh] {
        position: absolute;
        right: 15px;
        font-size: 14px;
        font-weight: 400;
        color: #718EBF;
        pointer-events: none;
    }

option[b-nxiujjladh] {
    color: #101010;
}

.mud-snackbar[b-nxiujjladh] {
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

/* Info snackbar */
.mud-snackbar-info[b-nxiujjladh] {
    background-color: #2196f3 !important; /* default blue */
}

/* Success snackbar */
.mud-snackbar-success[b-nxiujjladh] {
    background-color: #4caf50 !important;
}

/* Warning snackbar */
.mud-snackbar-warning[b-nxiujjladh] {
    background-color: #ff9800 !important;
}

/* Error snackbar */
.mud-snackbar-error[b-nxiujjladh] {
    background-color: #f44336 !important;
}
/* /Components/Pages/BookingRequest/BookingRequest.razor.rz.scp.css */
body[b-426awmcjxp] {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
}

.booking-title[b-426awmcjxp] {
    font-size: 14px;
    margin: 10px;
}

.booking-origin-destination-container[b-426awmcjxp] {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    justify-content: center;
    margin: 20px 0px 10px 10px;
}

.booking-origin-destination[b-426awmcjxp] {
    font-size: 14px;
    font-weight: bold;
}

.card-title-container[b-426awmcjxp] {
    padding: 30px 25px;
    margin: 20px;
    border-radius: 15px;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: block;
    text-align: left;
}

    .card-title-container > p:first-child[b-426awmcjxp] {
        text-align: center;
        margin-bottom: 15px;
    }

    .card-title-container > p:last-child[b-426awmcjxp] {
        text-align: center;
        margin-top: 20px;
    }

.trip-accordion-wrapper[b-426awmcjxp] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.trip-accordion-item[b-426awmcjxp] {
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    margin-bottom: 10px;
}

    .trip-accordion-item:hover[b-426awmcjxp] {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

.trip-details-line[b-426awmcjxp] {
    display: flex;
    flex-direction: row; /* Changed to row to allow side-by-side columns */
    flex-wrap: wrap; /* Allows columns to wrap to the next line on smaller screens */
    justify-content: space-between; /* Distributes space between the two columns */
    align-items: flex-start; /* Aligns items to the top */
    font-size: 0.9em;
    gap: 20px; /* Space between the columns */
    width: 100%; /* Ensure it takes full width */
    /* Removed white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
           as these conflict with multi-column wrapping layout */
}

.accordion-header[b-426awmcjxp] {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background-color: #ffffff;
    border-bottom: 1px solid #edf2f7;
    transition: background-color 0.2s ease;
}

.team-member-header[b-426awmcjxp] {
    padding: 20px;
    background-color: #F1F4F9;
    border-radius: 10px;
}

.non-team-member-header[b-426awmcjxp] {
    padding: 20px;
    background-color: #F1F4F9;
    border-radius: 10px;
}

.list-passenger[b-426awmcjxp] {
}

.flex-col .flex-grow[b-426awmcjxp] {
    flex-grow: 1;
}

.flex-col .mt-auto[b-426awmcjxp] {
    margin-top: auto;
}

/*    .accordion-header.active {
        background-color: #f7fafc;
    }

    .accordion-header:hover {
        background-color: #f7fafc;
    }*/

.accordion-title-group[b-426awmcjxp] {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: flex-start;
}

.accordion-title[b-426awmcjxp] {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.accordion-date[b-426awmcjxp] {
    color: #718096;
    margin-top: 4px;
    white-space: nowrap;
}

    .accordion-date .bi[b-426awmcjxp] {
        color: black;
    }

.accordion-status-and-icon[b-426awmcjxp] {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    white-space: nowrap;
}

.accordion-mini-rating[b-426awmcjxp] {
    display: flex;
    align-items: center;
    gap: 3px;
}

.table-responsive[b-426awmcjxp] {
    overflow-x: auto;
    margin-top: 20px;
    font-size: 14px;
}

.list-in-grid[b-426awmcjxp] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-content: center;
}

.list-in-grid-item[b-426awmcjxp] {
    display: flex;
    flex-direction: column;
}

.title[b-426awmcjxp] {
    font-weight: 300;
    font-size: medium;
}

/*Typography*/

.normal-text-button[b-426awmcjxp] {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}

.body1-regular[b-426awmcjxp] {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}

/* Input & Textarea Styles */
input[b-426awmcjxp], textarea[b-426awmcjxp] {
    width: 100%;
    max-width: auto;
    padding: 10px 20px;
    border: 1px solid #DFEAF2;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: border 0.3s ease-in-out, height 0.2s ease-in-out;
    color: #101010;
}

/* Textarea Specific Styles */
textarea[b-426awmcjxp] {
    height: 123px;
    min-height: 123px;
    max-height: 300px;
    resize: vertical;
    border-radius: 20px;
    overflow-y: auto;
    display: block;
    transition: border 0.3s ease-in-out;
}

    input[b-426awmcjxp]::placeholder, textarea[b-426awmcjxp]::placeholder {
        color: #718EBF;
        transition: color 0.3s ease-in-out;
    }

    input:focus[b-426awmcjxp], textarea:focus[b-426awmcjxp] {
        border-color: #FE6A6E;
    }

        input:focus[b-426awmcjxp]::placeholder, textarea:focus[b-426awmcjxp]::placeholder {
            color: #718EBF;
        }

    /* Disabled Input & Textarea Styles */
    input:disabled[b-426awmcjxp], textarea:disabled[b-426awmcjxp] {
        background-color: #EBF2FA !important;
        color: #A0A0A0;
        border: 1px solid #EBF2FA;
        cursor: not-allowed;
        opacity: 0.6;
        pointer-events: none;
        user-select: none;
    }

.textarea-container[b-426awmcjxp] {
    position: relative;
    width: 100%;
}

#charCounter[b-426awmcjxp] {
    position: absolute;
    bottom: -20px;
    right: 5px;
    font-size: 12px;
    font-weight: 400;
    color: #89939E;
}

.wrap-text-landmark[b-426awmcjxp] {
    white-space: normal !important;
    word-wrap: break-word;
    word-break: break-word;
    max-width: 200px;
}

/* Error Styling */
.input-error[b-426awmcjxp] {
    background-color: #FFE3E3;
    border: 1px solid #FFE3E3;
}

.status-message[b-426awmcjxp] {
    font-size: 12px;
    font-weight: 400;
    position: absolute;
    bottom: -20px;
    left: 5px;
}

/* Wrapper for inputs */
.input-wrapper[b-426awmcjxp] {
    position: relative;
    width: 100%;
}

.vetical-text[b-426awmcjxp] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.horizontal-text[b-426awmcjxp] {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Dropdown Styles */

select[b-426awmcjxp] {
    width: 100%;
    max-width: auto;
    padding: 10px 20px;
    border: 1px solid #DFEAF2;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: border 0.3s ease-in-out, height 0.2s ease-in-out;
    color: #718EBF;
    background-color: white;
    appearance: none;
}

    select:focus[b-426awmcjxp] {
        border-color: #FE6A6E;
    }

    select:not(:disabled):has(option:checked:not(:disabled))[b-426awmcjxp] {
        color: #101010;
    }

    select:disabled[b-426awmcjxp] {
        background-color: #EBF2FA !important;
        color: #A0A0A0;
        border: 1px solid #EBF2FA;
        cursor: not-allowed;
        opacity: 0.6;
        pointer-events: none;
        user-select: none;
    }

.select-input-container[b-426awmcjxp] {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

    .select-input-container select[b-426awmcjxp] {
        width: 100%;
        padding-right: 40px;
    }

    .select-input-container i[b-426awmcjxp] {
        position: absolute;
        right: 15px;
        font-size: 14px;
        font-weight: 400;
        color: #718EBF;
        pointer-events: none;
    }

.select-input-approver-container[b-426awmcjxp] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

    .select-input-approver-container select[b-426awmcjxp] {
        flex: 1;
        padding-right: 40px;
    }

    .select-input-approver-container i[b-426awmcjxp] {
        position: absolute;
        right: 110px;
        pointer-events: none;
        font-size: 14px;
        color: #718EBF;
    }

select option[disabled][selected][b-426awmcjxp] {
    display: none;
}

option[b-426awmcjxp] {
    color: #101010;
}

/*Datepicker*/

/*.datepicker {
    width: 100%;
    max-width: auto;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: border 0.3s ease-in-out, height 0.2s ease-in-out;
    background-color: #FFFFFF;
    border: 1px solid #DFEAF2;
    color: #000000;
}

    .datepicker:focus {
        border-color: #FE6A6E;
        background-color: #FFFFFF;
    }

    .datepicker::placeholder {
        color: #718EBF;
        transition: color 0.3s ease-in-out;
    }

.date-input-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

    .date-input-container input {
        width: 100%;
        padding-right: 40px;
    }

    .date-input-container i {
        position: absolute;
        right: 15px;
        font-size: 16px;
        color: #ABC0D1;
        pointer-events: none;
    }*/

/*Checkbox*/

.custom-checkbox[b-426awmcjxp] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    appearance: none;
    border: 1px solid #C9CED6;
    border-radius: 3px;
    background-color: #FFFFFF;
    position: relative;
    transition: border 0.3s ease, background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    vertical-align: middle;
}

    .custom-checkbox:not(:disabled):hover[b-426awmcjxp] {
        border-color: #EB0A1E;
    }

    .custom-checkbox:checked[b-426awmcjxp] {
        border-color: #EB0A1E;
        background-color: #EB0A1E;
    }

        .custom-checkbox:checked[b-426awmcjxp]::after {
            content: "✔";
            font-size: 10px;
            color: #FFFFFF;
            font-weight: bold;
        }

    .custom-checkbox:disabled[b-426awmcjxp] {
        cursor: not-allowed;
        opacity: 0.5;
        border-color: #E1E4E8;
    }

        .custom-checkbox:disabled:checked[b-426awmcjxp] {
            border-color: #EB0A1E !important;
            background-color: #EB0A1E !important;
        }


/* Pagination Styles */

.pagination-container[b-426awmcjxp] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-button[b-426awmcjxp] {
    border: none;
    border-radius: 10px;
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    transition: background 0.3s ease;
    background: transparent;
}

    .pagination-button:hover[b-426awmcjxp] {
        background-color: #F4F4F4;
        color: #101010;
    }

.default[b-426awmcjxp] {
    background: #EB0A1A;
    color: #FFFFFF;
    font-weight: 500;
}

    .default:hover[b-426awmcjxp] {
        background: #A90512;
        color: #FFFFFF;
    }

.pagination-navigate-button[b-426awmcjxp] {
    font-size: 12px;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: background 0.3s ease;
    background: transparent;
}

.disabled[b-426awmcjxp] {
    background-color: transparent;
    color: #B5B5B5;
    cursor: not-allowed;
}

    .disabled:hover[b-426awmcjxp] {
        background-color: transparent;
        color: #B5B5B5;
    }


/* Button Styles */


.submit-button[b-426awmcjxp] {
    background-color: #EB0A1A;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 100px;
    padding: 12px 20px;
    font-size: 12px;
    height: 36px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

    .submit-button:not(:disabled):hover[b-426awmcjxp] {
        background-color: #A90512;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(135, 135, 135, 0.6);
    }

    .submit-button:not(:disabled):focus[b-426awmcjxp] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(135, 135, 135, 0.6);
    }

    .submit-button:disabled[b-426awmcjxp] {
        background-color: #cccccc;
        color: #666666;
        box-shadow: none;
        cursor: not-allowed;
        pointer-events: none;
        transform: none;
        border: none;
    }

.cancel-button[b-426awmcjxp] {
    background-color: #E4ECF7;
    color: #505780;
    border: 1px solid #E4ECF7;
    cursor: pointer;
    font-weight: 600;
    border-radius: 100px;
    padding: 12px 20px;
    font-size: 12px;
    height: 36px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

    .cancel-button:hover[b-426awmcjxp] {
        background-color: #d8dde3;
        transform: translateY(-2px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .cancel-button:focus[b-426awmcjxp] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(160, 174, 192, 0.6);
    }

button[b-426awmcjxp] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Sizes */
.large-button[b-426awmcjxp] {
    border-radius: 50px;
    padding: 16px 24px;
    font-size: 14px;
    height: 48px;
}

.normal-button[b-426awmcjxp] {
    border-radius: 100px;
    padding: 12px 20px;
    font-size: 12px;
    height: 36px;
}

.small-button[b-426awmcjxp] {
    border-radius: 100px;
    padding: 8px 12px;
    font-size: 10px;
    height: 26px;
}

/* Default State */
.default[b-426awmcjxp] {
    background-color: #EB0A1A;
    color: #FFFFFF;
}

    .default:hover[b-426awmcjxp] {
        background-color: #A90512;
    }

/* Disabled State */
.disabled[b-426awmcjxp] {
    background-color: #EBF2FA;
    color: #A6B7D4;
    cursor: not-allowed;
}

/* Option State */
.outline[b-426awmcjxp] {
    background-color: #FFFFFF;
    color: #EB0A1E;
    border: 1px solid #EB0A1E;
}

/* Option State */
.option-button[b-426awmcjxp] {
    background-color: #E4ECF7;
    color: #505780;
    border: 1px solid #E4ECF7;
}

/* Icon Placement */
.icon-left i[b-426awmcjxp] {
    margin-right: 8px;
}

.icon-right i[b-426awmcjxp] {
    margin-left: 8px;
}


/* Modal Styles */

.modal-overlay[b-426awmcjxp] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 15px;
    box-sizing: border-box;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.modal-container-add-passenger[b-426awmcjxp] {
    background-color: #FFFFFF;
    border-radius: 15px;
    width: 95%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    box-sizing: border-box;
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-content-area[b-426awmcjxp] {
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.modal-scrollable-options[b-426awmcjxp] {
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 8px;
}

.modal-header[b-426awmcjxp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #edf2f7;
    position: relative;
}

.modal-input-non-tm[b-426awmcjxp] {
    gap: 10px;
}

.modal-actions-group[b-426awmcjxp] {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    flex-shrink: 0;
    padding-top: 15px;
    border-top: 1px solid #edf2f7;
}

.modal-title-text[b-426awmcjxp] {
    font-size: 16px;
    margin: 0;
    text-align: start;
    padding: 20px 0px 0px 5px;
}

.close-modal-icon[b-426awmcjxp] {
    cursor: pointer;
    font-size: 24px;
    color: #a0aec0;
    transition: color 0.2s ease;
    position: static;
    top: auto;
    right: auto;
}

    .close-modal-icon:hover[b-426awmcjxp] {
        color: #2d3748;
    }

.modal-input-wrapper[b-426awmcjxp] {
    position: relative;
    width: 100%;
    margin: 10px 0px;
}

.modal-input-approver-wrapper[b-426awmcjxp] {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 5px;
    gap: 20px;
}

.modal-main-title-text[b-426awmcjxp] {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    text-align: center;
}

.badge-container[b-426awmcjxp] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0px;
}

.display-badge[b-426awmcjxp] {
    padding: 8px 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid #EB0A1E;
    border-radius: 20px;
    max-height: 30px;
}

.badge[b-426awmcjxp] {
    padding: 8px 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    background-color: #EB0A1E;
    border-radius: 20px;
    max-height: 30px;
}

.icon-warning[b-426awmcjxp] {
    font-size: 84px;
    color: #EB0A1E;
    text-align: center;
    margin-bottom: 20px;
}

.icon-success[b-426awmcjxp] {
    font-size: 84px;
    color: #4AD991;
    text-align: center;
    margin-bottom: 20px;
}

/* Pill Button Styles */

.normal-pill[b-426awmcjxp] {
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 8px 12px;
    height: 26px;
}

.small-pill[b-426awmcjxp] {
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 2px 10px;
    height: 19px;
}

.success[b-426awmcjxp] {
    background-color: #4AD991;
    color: #FFFFFF;
}

.warning[b-426awmcjxp] {
    background-color: #FCC23C;
    color: #FFFFFF;
}

.danger[b-426awmcjxp] {
    background-color: #FD5454;
    color: #FFFFFF;
}

/* Icon Placement */
.icon-left i[b-426awmcjxp] {
    margin-right: 8px;
}

.icon-right i[b-426awmcjxp] {
    margin-left: 8px;
}



/* Toggle Button Styles */


.menu_button[b-426awmcjxp] {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 20px;
    width: fit-content;
    margin: 1rem auto;
}

.toggle-button[b-426awmcjxp] {
    background-color: transparent;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

    .toggle-button.active[b-426awmcjxp] {
        background-color: #EB0A1A;
        color: white;
    }

    .toggle-button:hover:not(.active)[b-426awmcjxp] {
        background-color: #e0e0e0;
    }



/*Slider*/

.toggle-switch[b-426awmcjxp] {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
}

.custom-toggle[b-426awmcjxp] {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider[b-426awmcjxp] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E4EBF6;
    border: 2px solid #E4EBF6;
    border-radius: 20px;
    transition: 0.3s;
}

    .slider[b-426awmcjxp]:before {
        content: "";
        position: absolute;
        height: 14px;
        width: 14px;
        top: 2px;
        left: 1px;
        right: 1px;
        bottom: 2px;
        background-color: white;
        transition: 0.3s;
        border-radius: 50%;
    }

.custom-toggle:checked + .slider[b-426awmcjxp] {
    border-color: #EB0A1A;
    background-color: #EB0A1A;
}

    .custom-toggle:checked + .slider[b-426awmcjxp]:before {
        background-color: white;
        transform: translateX(20px);
    }

.custom-toggle:disabled + .slider[b-426awmcjxp] {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #E4EBF6;
    background-color: #E4EBF6;
}

.custom-toggle:disabled:checked + .slider[b-426awmcjxp] {
    border-color: #EB0A1A !important;
    background-color: #EB0A1A !important;
}


/* Table Styles */

table[b-426awmcjxp], .custom-table[b-426awmcjxp] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

    th[b-426awmcjxp], .custom-table th[b-426awmcjxp] {
        font-size: 14px;
        font-weight: 600;
        padding: 16px 22px;
        text-align: center;
    }

    td[b-426awmcjxp], .custom-table td[b-426awmcjxp] {
        font-size: 14px;
        font-weight: 400;
        padding: 16px 22px;
        text-align: center;
        border-bottom: 1px solid #DCDCDC;
    }

table[b-426awmcjxp], th[b-426awmcjxp], td[b-426awmcjxp], .custom-table[b-426awmcjxp] {
    vertical-align: middle;
}

.custom-thead[b-426awmcjxp] {
    background-color: #F1F4F9;
}

    .custom-thead tr:first-child th:first-child[b-426awmcjxp] {
        border-top-left-radius: 20px;
    }

    .custom-thead tr:first-child th:last-child[b-426awmcjxp] {
        border-top-right-radius: 20px;
    }

    .custom-thead tr:last-child th:first-child[b-426awmcjxp] {
        border-bottom-left-radius: 20px;
    }

    .custom-thead tr:last-child th:last-child[b-426awmcjxp] {
        border-bottom-right-radius: 20px;
    }

.custom-table th:not(:last-child)[b-426awmcjxp],
.custom-table td:not(:last-child)[b-426awmcjxp] {
    border-right: 1px solid #DCDCDC;
}

tbody tr:hover[b-426awmcjxp] {
    background-color: #F6F6F6;
}

.custom-tbody tr:nth-child(odd)[b-426awmcjxp] {
    background-color: #FFFFFF;
}

.custom-tbody tr:nth-child(even)[b-426awmcjxp] {
    background-color: #F6F6F6;
}

.input-invalid[b-426awmcjxp] {
    border: 1px solid #FD5454 !important;
    background-color: #fff0f0;
}

.validation-message[b-426awmcjxp] {
    color: #FD5454;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.timepicker[b-426awmcjxp] {
    color: #000;
}

.timepicker.empty[b-426awmcjxp] {
        color: #718ebf;
    }

/* Chrome, Edge, Safari */
input[type="time"][b-426awmcjxp]::-webkit-calendar-picker-indicator {
    filter: invert(48%) sepia(16%) saturate(403%) hue-rotate(179deg) brightness(90%) contrast(85%);
    /* This filter produces #718ebf */
    opacity: 1; /* make sure it's visible */
}

/* Firefox (it doesn't show the same icon, but keeps consistency) */
input[type="time"][b-426awmcjxp] {
    color-scheme: light; /* ensure custom color visibility */
}

@media (max-width: 420px) {
    .list-in-grid[b-426awmcjxp] {
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
        padding: 0 5px;
    }

    .menu_button[b-426awmcjxp] {
        width: 100%;
        margin: 0.5rem auto;
    }

    .toggle-button[b-426awmcjxp] {
        width: 100%;
        padding: 8px 12px;
        font-size: 12px;
        justify-content: center;
    }

    .modal-content-area[b-426awmcjxp] {
        padding: 15px;
    }

    .modal-title-text[b-426awmcjxp] {
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .card-title-container[b-426awmcjxp] {
        margin: 10px;
        padding: 20px;
    }

    .menu_button[b-426awmcjxp] {
        flex-direction: column;
        padding: 0.5rem;
    }

    .toggle-button[b-426awmcjxp] {
        padding: 8px 16px;
        font-size: 13px;
        gap: 6px;
    }

    .modal-container-add-passenger[b-426awmcjxp] {
        width: 95%;
        max-height: calc(100vh - 20px);
        max-height: calc(100dvh - 20px);
    }

    .modal-content-area[b-426awmcjxp] {
        padding: 15px;
    }

    .modal-header[b-426awmcjxp] {
        /*flex-direction: column;*/
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }

    .modal-actions-group[b-426awmcjxp] {
        align-items: stretch;
        gap: 8px;
        margin-top: 20px;
        padding-top: 10px;
    }

    .modal-title-text[b-426awmcjxp] {
        font-size: 14px;
    }

    .close-modal-icon[b-426awmcjxp] {
        position: absolute;
        top: 5px;
        right: 5px;
        font-size: 18px;
    }

    .cancel-button[b-426awmcjxp],
    .submit-button[b-426awmcjxp] {
        padding: 10px 15px;
        font-size: 12px;
    }

    .badge[b-426awmcjxp] {
        padding: 8px 12px;
        font-size: 12px;
        display: flex;
        align-items: center;
        background-color: #EB0A1E;
        border-radius: 20px;
        max-height: 20px;
    }
}

@media (max-width: 767px) {
    .list-in-grid[b-426awmcjxp] {
        /*grid-template-columns: repeat(2, 1fr);*/
        gap: 15px;
        padding: 0 10px;
    }

    .list-in-grid-item[b-426awmcjxp] {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        padding: 5px;
    }
}

.mud-snackbar[b-426awmcjxp] {
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

/* Info snackbar */
.mud-snackbar-info[b-426awmcjxp] {
    background-color: #2196f3 !important; /* default blue */
}

/* Success snackbar */
.mud-snackbar-success[b-426awmcjxp] {
    background-color: #4caf50 !important;
}

/* Warning snackbar */
.mud-snackbar-warning[b-426awmcjxp] {
    background-color: #ff9800 !important;
}

/* Error snackbar */
.mud-snackbar-error[b-426awmcjxp] {
    background-color: #f44336 !important;
}

.overlay[b-426awmcjxp] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
}

.loading-text[b-426awmcjxp] {
    margin-top: 12px;
    font-weight: 500;
    color: gray;
}

#routeDetailsSection[b-426awmcjxp], #summarySection[b-426awmcjxp] {
    scroll-margin-top: 80px;
}
/* /Components/Pages/Bookings/Bookings.razor.rz.scp.css */
body[b-fzuf79sg3g] {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
}

.card-title-container[b-fzuf79sg3g] {
    padding: 30px 25px;
    margin: 20px;
    border-radius: 15px;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: block;
    text-align: left;
}

    .card-title-container > p:first-child[b-fzuf79sg3g] {
        text-align: center;
        margin-bottom: 15px;
    }

    .card-title-container > p:last-child[b-fzuf79sg3g] {
        text-align: center;
        margin-top: 20px;
    }

.section-title[b-fzuf79sg3g] {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    display: block;
    text-align: left;
}

.body_section[b-fzuf79sg3g] {
    display: flex;
    flex-direction: column;
    padding: 20px 25px;
    margin-bottom: 20px;
    gap: 25px;
    width: 100%;
    box-sizing: border-box;
}

.content-wrapper[b-fzuf79sg3g] {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    margin: 0 auto;
}

.trip-accordion-wrapper[b-fzuf79sg3g] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.trip-accordion-item[b-fzuf79sg3g] {
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    margin-bottom: 10px;
}

    .trip-accordion-item:hover[b-fzuf79sg3g] {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

.accordion-header[b-fzuf79sg3g] {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background-color: #ffffff;
    border-bottom: 1px solid #edf2f7;
    transition: background-color 0.2s ease;
}

    .accordion-header.active[b-fzuf79sg3g] {
        background-color: #f7fafc;
    }

    .accordion-header:hover[b-fzuf79sg3g] {
        background-color: #f7fafc;
    }

.accordion-title-group[b-fzuf79sg3g] {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: flex-start;
}

.accordion-title[b-fzuf79sg3g] {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.accordion-date[b-fzuf79sg3g] {
    font-size: 14px;
    color: #718096;
    margin-top: 4px;
    white-space: nowrap;
}

.accordion-status-and-icon[b-fzuf79sg3g] {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    white-space: nowrap;
}

.accordion-mini-rating[b-fzuf79sg3g] {
    display: flex;
    align-items: center;
    gap: 3px;
}

.mini-star[b-fzuf79sg3g] {
    font-size: 14px;
}

.status-text[b-fzuf79sg3g] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    font-size: 0.9em;
    transition: background-color 2.4s ease, color 2.4s ease, border-color .4s ease;
}

    .status-text.completed[b-fzuf79sg3g] {
        background-color: #e6ffe6;
        color: #28a745;
        border: 1px solid #28a745;
    }

    .status-text.pending[b-fzuf79sg3g] {
        background-color: #fff8e6;
        color: #ffc107;
        border: 1px solid #ffc107;
    }

    .status-text.ongoing[b-fzuf79sg3g] {
        background-color: #e0f2fe;
        color: #2196f3;
        border: 1px solid #2196f3;
    }

    .status-text.clickable-pending[b-fzuf79sg3g] {
        cursor: pointer;
        transition: background-color 0.2s ease, border-color 0.2s ease;
    }

        .status-text.clickable-pending:hover[b-fzuf79sg3g] {
            background-color: #ffe08a;
            border-color: #e0a800;
        }

    .status-text.status-for-pickup[b-fzuf79sg3g] {
        color: #6c757d;
        background-color: #e9ecef;
        border: 1px solid #6c757d;
    }

    .status-text.status-for-dropoff[b-fzuf79sg3g] {
        color: #ffc107;
        background-color: #fff3cd;
        border: 1px solid #ffc107;
    }

@keyframes status-pulse-b-fzuf79sg3g {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.status-text.animate-pulse[b-fzuf79sg3g] {
    animation: status-pulse-b-fzuf79sg3g 0.6s ease-out;
}

.accordion-icon[b-fzuf79sg3g] {
    font-size: 18px;
    color: #a0aec0;
    transition: transform 0.3s ease;
}

    .accordion-icon.rotate[b-fzuf79sg3g] {
        transform: rotate(180deg);
    }

.accordion-content[b-fzuf79sg3g] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
}

    .accordion-content.expanded[b-fzuf79sg3g] {
        max-height: 500px;
        padding: 20px 25px;
    }

.trip-route[b-fzuf79sg3g] {
    display: flex;
    align-items: center;
    font-size: 1.2em;
    margin-bottom: 5px;
    color: #2d3748;
    flex-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.route-icon[b-fzuf79sg3g] {
    font-size: 1.1em;
    margin-right: 5px;
    color: #e74c3c;
    flex-shrink: 0;
}

.trip-route .route-icon + .bi-arrow-right + .route-icon[b-fzuf79sg3g] {
    margin-left: 8px;
}

.route-arrow[b-fzuf79sg3g] {
    font-size: 1em;
    margin: 0 8px;
    color: #4a5568;
    flex-shrink: 0;
}

.trip-details-line[b-fzuf79sg3g] {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 0.9em;
    color: #6c757d;
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.driver-name[b-fzuf79sg3g] {
    margin: 0;
    white-space: nowrap;
    font-weight: 500;
}

.rated-section[b-fzuf79sg3g] {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.rated-heading[b-fzuf79sg3g] {
    font-size: 16px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 10px;
}

.overall-rating-display[b-fzuf79sg3g] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.overall-rating-label[b-fzuf79sg3g] {
    color: #4a5568;
    font-size: 16px;
    font-weight: 500;
}

.bi[b-fzuf79sg3g] {
    font-family: "bootstrap-icons" !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.star-yellow[b-fzuf79sg3g] {
    color: #ffc107;
}

.star-gray[b-fzuf79sg3g] {
    color: #ccc;
}

.star-blue[b-fzuf79sg3g] {
    color: #4299e1;
}

.overall-rating-value[b-fzuf79sg3g] {
    font-size: 14px;
    color: #718096;
    font-weight: 500;
}

.individual-ratings-summary[b-fzuf79sg3g] {
    font-size: 13px;
    color: #a0aec0;
    margin-top: 8px;
    line-height: 1.4;
}

.trip-comment-display[b-fzuf79sg3g] {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
}

.comment-label[b-fzuf79sg3g] {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 5px;
    display: block;
}

.comment-text[b-fzuf79sg3g] {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
    background-color: #f7fafc;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #edf2f7;
}

.rate-trip-button[b-fzuf79sg3g] {
    display: none;
}

.no-trips-message[b-fzuf79sg3g] {
    color: #718096;
    font-size: 18px;
    margin-top: 40px;
    text-align: center;
    width: 100%;
}

.modal-overlay[b-fzuf79sg3g] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 15px;
    box-sizing: border-box;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.modal-container[b-fzuf79sg3g] {
    background-color: #FFFFFF;
    border-radius: 15px;
    width: 95%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    box-sizing: border-box;
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-container-cancel-booking[b-fzuf79sg3g] {
    background-color: #FFFFFF;
    border-radius: 15px;
    width: 95%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    box-sizing: border-box;
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-content-area[b-fzuf79sg3g] {
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.modal-header[b-fzuf79sg3g] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #edf2f7;
    position: relative;
}

.modal-title-text[b-fzuf79sg3g] {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    text-align: center;
}

.close-modal-icon[b-fzuf79sg3g] {
    cursor: pointer;
    font-size: 24px;
    color: #a0aec0;
    transition: color 0.2s ease;
    position: static;
    top: auto;
    right: auto;
}

    .close-modal-icon:hover[b-fzuf79sg3g] {
        color: #2d3748;
    }

.modal-rating-section[b-fzuf79sg3g] {
    margin-bottom: 25px;
    text-align: center;
}

.modal-rating-label[b-fzuf79sg3g] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

    .modal-rating-label.required-field[b-fzuf79sg3g]::after {
        content: ' *';
        color: #dc3545;
        margin-left: 4px;
    }

.star-input-group[b-fzuf79sg3g] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

    /* Base size for stars */
    .star-input-group .star-input[b-fzuf79sg3g] {
        font-size: 30px;
    }

.star-input[b-fzuf79sg3g] {
    cursor: pointer;
    transition: transform 100ms ease-in-out, color 0.2s ease;
}

    .star-input:hover[b-fzuf79sg3g] {
        transform: scale(1.15);
        color: #f6ad55;
    }

    .star-input.selected[b-fzuf79sg3g] {
        color: #f6ad55;
        transform: scale(1.05);
        animation: star-selected-pulse-b-fzuf79sg3g 0.3s ease-out;
    }

@keyframes star-selected-pulse-b-fzuf79sg3g {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.05);
    }
}

.modal-overall-rating-display[b-fzuf79sg3g] {
    margin-top: 30px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #e2e8f0;
    border-radius: 10px;
    border: 1px solid #cbd5e0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.star-display-group[b-fzuf79sg3g] {
    display: flex;
    align-items: center;
    /* This will center the stars in the overall rating section */
    justify-content: center;
    /* This creates space between stars */
    gap: 12px;
}

.overall-star-display[b-fzuf79sg3g] {
    font-size: 32px;
}

.overall-rating-value-large[b-fzuf79sg3g] {
    margin-left: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
}

.comment-textarea[b-fzuf79sg3g] {
    width: 100%;
    min-height: 100px;
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #4a5568;
    resize: vertical;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .comment-textarea:focus[b-fzuf79sg3g] {
        outline: none;
        border-color: #4299e1;
        box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.4);
    }

    .comment-textarea:required:invalid[b-fzuf79sg3g] {
        border-color: #dc3545;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    }

.validation-message[b-fzuf79sg3g] {
    color: #dc3545;
    font-size: 0.85em;
    margin-top: 5px;
}

.modal-actions-group[b-fzuf79sg3g] {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    flex-shrink: 0;
    padding-top: 15px;
    border-top: 1px solid #edf2f7;
}

.modal-skip-button[b-fzuf79sg3g] {
    display: none;
}

.modal-cancel-button[b-fzuf79sg3g] {
    background-color: #E4ECF7;
    color: #505780;
    border: 1px solid #E4ECF7;
    cursor: pointer;
    font-weight: 600;
    border-radius: 100px;
    padding: 12px 20px;
    font-size: 12px;
    height: 36px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

    .modal-cancel-button:hover[b-fzuf79sg3g] {
        background-color: #d8dde3;
        transform: translateY(-2px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .modal-cancel-button:focus[b-fzuf79sg3g] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(160, 174, 192, 0.6);
    }

.book-trip-button[b-fzuf79sg3g] {
    background-color: #EB0A1A;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    font-weight: 600;
    max-width: 120px;
    border-radius: 100px;
    padding: 12px 20px;
    font-size: 12px;
    height: 36px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

    .book-trip-button:not(:disabled):hover[b-fzuf79sg3g] {
        background-color: #A90512;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(135, 135, 135, 0.6);
    }

    .book-trip-button:not(:disabled):focus[b-fzuf79sg3g] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(135, 135, 135, 0.6);
    }

.modal-submit-button[b-fzuf79sg3g] {
    background-color: #EB0A1A;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 100px;
    padding: 12px 20px;
    font-size: 12px;
    height: 36px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

    .modal-submit-button:not(:disabled):hover[b-fzuf79sg3g] {
        background-color: #A90512;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(135, 135, 135, 0.6);
    }

    .modal-submit-button:not(:disabled):focus[b-fzuf79sg3g] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(135, 135, 135, 0.6);
    }

    .modal-submit-button:disabled[b-fzuf79sg3g] {
        background-color: #cccccc;
        color: #666666;
        box-shadow: none;
        cursor: not-allowed;
        pointer-events: none;
        transform: none;
        border: none;
    }

.filter-and-title-group[b-fzuf79sg3g] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-dropdown-container[b-fzuf79sg3g] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-label[b-fzuf79sg3g] {
    font-size: 15px;
    font-weight: 600;
    color: #4a5568;
    white-space: nowrap;
}

.filter-dropdown[b-fzuf79sg3g] {
    padding: 10px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #2d3748;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23a0aec0%22%20d%3D%22M287%2069.9H5.4c-7.2%200-11.4%208.5-7%2014.2l140.7%20140.8c4.6%204.6%2012.3%204.6%2016.9%200L294%2084.1c4.4-5.7.2-14.2-7-14.2z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .filter-dropdown:hover[b-fzuf79sg3g] {
        border-color: #a0aec0;
    }

    .filter-dropdown:focus[b-fzuf79sg3g] {
        outline: none;
        border-color: #4299e1;
        box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.4);
    }

.pagination-controls[b-fzuf79sg3g] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 8px;
}

.pagination-button[b-fzuf79sg3g] {
    background: transparent;
    color: #333;
    border: none;
    padding: 8px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s, border-color 0.2s;
    min-width: 32px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .pagination-button:hover:not(:disabled)[b-fzuf79sg3g] {
        background-color: transparent;
        color: #B5B5B5;
    }

    .pagination-button:disabled[b-fzuf79sg3g] {
        background-color: transparent;
        color: #B5B5B5;
        cursor: not-allowed;
    }

    .pagination-button.active-page[b-fzuf79sg3g] {
        background: #EB0A1A;
        color: #FFFFFF;
        font-weight: 500;
    }

        .pagination-button.active-page:hover[b-fzuf79sg3g] {
            background: #A90512;
            color: #FFFFFF;
        }

.pagination-navigate-button[b-fzuf79sg3g] {
    font-size: 16px;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: background 0.3s ease;
    background: transparent;
}

    .pagination-navigate-button:hover:not(:disabled)[b-fzuf79sg3g] {
         background-color: #F4F4F4;
        color: #101010;
    }

    .pagination-navigate-button:disabled[b-fzuf79sg3g] {
        background-color: transparent;
        color: #B5B5B5;
        cursor: not-allowed;
    }

    .pagination-navigate-button.active-page[b-fzuf79sg3g] {
        background: #EB0A1A;
        color: #FFFFFF;
        font-weight: 500;
    }

        .pagination-navigate-button.active-page:hover[b-fzuf79sg3g] {
            background: #A90512;
            color: #FFFFFF;
        }

.mini-dashboard[b-fzuf79sg3g] {
    background-color: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.dashboard-title[b-fzuf79sg3g] {
    font-size: 24px;
    color: #2d3748;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.dashboard-stats-grid[b-fzuf79sg3g] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-content: center;
}

.dashboard-stat-item[b-fzuf79sg3g] {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border: 1px solid #ebf4ff;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease-in-out;
}

    .dashboard-stat-item:hover[b-fzuf79sg3g] {
        transform: translateY(-3px);
    }

.dashboard-icon[b-fzuf79sg3g] {
    font-size: 36px;
    color: red;
    margin-bottom: 10px;
}

.stat-content[b-fzuf79sg3g] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value[b-fzuf79sg3g] {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 5px;
}

.stat-label[b-fzuf79sg3g] {
    font-size: 14px;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.component-row[b-fzuf79sg3g] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.left-column[b-fzuf79sg3g] {
    flex-shrink: 0;
    text-align: left;
}

.right-column[b-fzuf79sg3g] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    flex-grow: 1;
    justify-content: flex-end;
}

.search-input[b-fzuf79sg3g] {
    max-width: 200px;
}

.icon-success[b-fzuf79sg3g] {
    font-size: 84px;
    color: #4AD991;
    text-align: center;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .dashboard-stats-grid[b-fzuf79sg3g] {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

    .component-row[b-fzuf79sg3g] {
        flex-direction: column;
        align-items: stretch;
    }

    .right-column[b-fzuf79sg3g] {
        flex-direction: column;
        align-items: stretch;
    }

        .right-column > *[b-fzuf79sg3g] {
            width: 100%;
        }

    .dashboard-stat-item[b-fzuf79sg3g] {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 15px;
        min-height: 120px;
    }

    .dashboard-icon[b-fzuf79sg3g] {
        font-size: 30px;
        margin-bottom: 2px;
    }

    .stat-content[b-fzuf79sg3g] {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .stat-value[b-fzuf79sg3g] {
        font-size: 20px;
        margin-bottom: 0;
    }

    .stat-label[b-fzuf79sg3g] {
        font-size: 11px;
        line-height: 1.2;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 600px) {
    .card-title-container[b-fzuf79sg3g] {
        margin: 10px;
        padding: 20px;
    }

    .filter-and-title-group[b-fzuf79sg3g] {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .accordion-header[b-fzuf79sg3g] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 20px;
    }

    .accordion-title-group[b-fzuf79sg3g] {
        width: 100%;
        margin-right: 0;
    }

    .accordion-status-and-icon[b-fzuf79sg3g] {
        width: 100%;
        justify-content: flex-end;
        margin-top: 10px;
    }

    .modal-container[b-fzuf79sg3g] {
        width: 95%;
        max-height: calc(100vh - 20px);
        max-height: calc(100dvh - 20px);
    }

    .modal-container-cancel-booking[b-fzuf79sg3g] {
        width: 95%;
        max-height: calc(100vh - 20px);
        max-height: calc(100dvh - 20px);
    }

    .modal-header[b-fzuf79sg3g] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }

    .modal-title-text[b-fzuf79sg3g] {
        font-size: 14px;
    }

    .close-modal-icon[b-fzuf79sg3g] {
        position: absolute;
        top: 5px;
        right: 5px;
        font-size: 18px;
    }

    .modal-content-area[b-fzuf79sg3g] {
        padding: 15px;
    }

    .modal-rating-section[b-fzuf79sg3g] {
        margin-bottom: 15px;
    }

    .modal-rating-label[b-fzuf79sg3g] {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .star-input-group[b-fzuf79sg3g] {
        gap: 8px;
    }

        .star-input-group .star-input[b-fzuf79sg3g] {
            font-size: 28px;
        }

    .modal-overall-rating-display[b-fzuf79sg3g] {
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 15px;
    }

    .overall-star-display[b-fzuf79sg3g] {
        font-size: 26px;
    }

    .overall-rating-value-large[b-fzuf79sg3g] {
        font-size: 20px;
    }

    .comment-textarea[b-fzuf79sg3g] {
        min-height: 80px;
        padding: 10px 12px;
        font-size: 14px;
    }

    .modal-actions-group[b-fzuf79sg3g] {
        align-items: stretch;
        gap: 8px;
        margin-top: 20px;
        padding-top: 10px;
    }

    .modal-skip-button[b-fzuf79sg3g],
    .modal-cancel-button[b-fzuf79sg3g],
    .modal-submit-button[b-fzuf79sg3g] {
        padding: 10px 15px;
        font-size: 15px;
    }

    .accordion-content.expanded .rated-heading[b-fzuf79sg3g] {
        font-size: 15px;
    }

    .accordion-content.expanded .overall-rating-label[b-fzuf79sg3g] {
        font-size: 14px;
    }

    .accordion-content.expanded .overall-star-display[b-fzuf79sg3g] {
        font-size: 26px;
    }

    .accordion-content.expanded .individual-ratings-summary[b-fzuf79sg3g] {
        font-size: 12px;
    }

    .accordion-content.expanded .comment-label[b-fzuf79sg3g] {
        font-size: 13px;
    }

    .accordion-content.expanded .comment-text[b-fzuf79sg3g] {
        font-size: 13px;
    }

    .accordion-content.expanded .unrated-message[b-fzuf79sg3g] {
        font-size: 14px;
    }

    .accordion-content.expanded[b-fzuf79sg3g] {
        padding: 15px 20px;
    }

    .trip-route[b-fzuf79sg3g] {
        font-size: 0.9em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .route-icon[b-fzuf79sg3g] {
        font-size: 0.8em;
        margin-right: 2px;
    }

    .trip-route .route-icon + .bi-arrow-right + .route-icon[b-fzuf79sg3g] {
        margin-left: 4px;
    }

    .route-arrow[b-fzuf79sg3g] {
        font-size: 0.7em;
        margin: 0 4px;
    }

    .trip-details-line[b-fzuf79sg3g] {
        font-size: 0.75em;
        gap: 2px;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }

    .accordion-date[b-fzuf79sg3g] {
        font-size: 0.75em;
    }
}

@media (max-width: 480px) {
    .pagination-button[b-fzuf79sg3g] {
        padding: 6px 10px;
        font-size: 12px;
        min-width: unset;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pagination-navigate-button[b-fzuf79sg3g] {
        padding: 6px 10px;
        font-size: 12px;
        min-width: unset;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .trip-route[b-fzuf79sg3g] {
        font-size: 0.85em;
    }

    .trip-details-line[b-fzuf79sg3g] {
        font-size: 0.7em;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }

    .accordion-date[b-fzuf79sg3g] {
        font-size: 0.75em;
    }
}

@media (max-width: 420px) {
    .dashboard-stats-grid[b-fzuf79sg3g] {
        gap: 8px;
        padding: 0 5px;
    }

    .dashboard-stat-item[b-fzuf79sg3g] {
        min-height: 100px;
        padding: 10px;
    }

    .dashboard-icon[b-fzuf79sg3g] {
        font-size: 26px;
        margin-bottom: 1px;
    }

    .stat-value[b-fzuf79sg3g] {
        font-size: 18px;
    }

    .stat-label[b-fzuf79sg3g] {
        font-size: 10px;
    }

    .modal-container[b-fzuf79sg3g] {
        padding: 10px;
    }

    .modal-content-area[b-fzuf79sg3g] {
        padding: 15px;
    }

    .modal-title-text[b-fzuf79sg3g] {
        font-size: 12px;
    }

    .modal-cancel-button[b-fzuf79sg3g],
    .modal-submit-button[b-fzuf79sg3g] {
        padding: 8px 12px;
        font-size: 14px;
    }
}

.details-grid[b-fzuf79sg3g] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    font-size: 14px;
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    align-items: start;
}

.details-grid-items[b-fzuf79sg3g] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
}

.badge-status[b-fzuf79sg3g] {
    background-color: #5b48f2;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
}

.table-responsive[b-fzuf79sg3g] {
    overflow-x: auto;
    margin-top: 20px;
}

.mt-3[b-fzuf79sg3g] {
    margin-top: 1rem;
}

.mt-4[b-fzuf79sg3g] {
    margin-top: 1.5rem;
}

/* Input & Textarea Styles */
input[b-fzuf79sg3g], textarea[b-fzuf79sg3g] {
    width: 100%;
    max-width: auto;
    padding: 10px 20px;
    border: 1px solid #DFEAF2;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: border 0.3s ease-in-out, height 0.2s ease-in-out;
    color: #101010;
}

/* Textarea Specific Styles */
textarea[b-fzuf79sg3g] {
    height: 123px;
    min-height: 123px;
    max-height: 300px;
    resize: vertical;
    border-radius: 20px;
    overflow-y: auto;
    display: block;
    transition: border 0.3s ease-in-out;
}

    input[b-fzuf79sg3g]::placeholder, textarea[b-fzuf79sg3g]::placeholder {
        color: #718EBF;
        transition: color 0.3s ease-in-out;
    }

    input:focus[b-fzuf79sg3g], textarea:focus[b-fzuf79sg3g] {
        border-color: #FE6A6E;
    }

        input:focus[b-fzuf79sg3g]::placeholder, textarea:focus[b-fzuf79sg3g]::placeholder {
            color: #718EBF;
        }

    /* Disabled Input & Textarea Styles */
    input:disabled[b-fzuf79sg3g], textarea:disabled[b-fzuf79sg3g] {
        background-color: #EBF2FA !important;
        color: #A0A0A0;
        border: 1px solid #EBF2FA;
        cursor: not-allowed;
        opacity: 0.6;
        pointer-events: none;
        user-select: none;
    }

.textarea-container[b-fzuf79sg3g] {
    position: relative;
    width: 100%;
}

#charCounter[b-fzuf79sg3g] {
    position: absolute;
    bottom: -20px;
    right: 5px;
    font-size: 12px;
    font-weight: 400;
    color: #89939E;
}

/* Error Styling */
.input-error[b-fzuf79sg3g] {
    background-color: #FFE3E3;
    border: 1px solid #FFE3E3;
}

.status-message[b-fzuf79sg3g] {
    font-size: 12px;
    font-weight: 400;
    position: absolute;
    bottom: -20px;
    left: 5px;
}

/* Wrapper for inputs */
.input-wrapper[b-fzuf79sg3g] {
    position: relative;
    width: 100%;
}

.vetical-text[b-fzuf79sg3g] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.horizontal-text[b-fzuf79sg3g] {
    display: flex;
    align-items: center;
    gap: 8px;
}


/* Dropdown Styles */

select[b-fzuf79sg3g] {
    width: 100%;
    max-width: auto;
    padding: 10px 20px;
    border: 1px solid #DFEAF2;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: border 0.3s ease-in-out, height 0.2s ease-in-out;
    color: #718EBF;
    background-color: white;
    appearance: none;
}

    select:focus[b-fzuf79sg3g] {
        border-color: #FE6A6E;
    }

    select:not(:disabled):has(option:checked:not(:disabled))[b-fzuf79sg3g] {
        color: #101010;
    }

    select:disabled[b-fzuf79sg3g] {
        background-color: #EBF2FA !important;
        color: #A0A0A0;
        border: 1px solid #EBF2FA;
        cursor: not-allowed;
        opacity: 0.6;
        pointer-events: none;
        user-select: none;
    }

.select-input-container[b-fzuf79sg3g] {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 200px;
}

    .select-input-container select[b-fzuf79sg3g] {
        width: 100%;
        padding-right: 40px;
    }

    .select-input-container i[b-fzuf79sg3g] {
        position: absolute;
        right: 15px;
        font-size: 14px;
        font-weight: 400;
        color: #718EBF;
        pointer-events: none;
    }

option[b-fzuf79sg3g] {
    color: #101010;
}


/* Table Styles */

table[b-fzuf79sg3g], .custom-table[b-fzuf79sg3g] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

    th[b-fzuf79sg3g], .custom-table th[b-fzuf79sg3g] {
        font-size: 16px;
        font-weight: 600;
        padding: 16px 22px;
        text-align: center;
    }

    td[b-fzuf79sg3g], .custom-table td[b-fzuf79sg3g] {
        font-size: 16px;
        font-weight: 400;
        padding: 16px 22px;
        text-align: center;
        border-bottom: 1px solid #DCDCDC;
    }

table[b-fzuf79sg3g], th[b-fzuf79sg3g], td[b-fzuf79sg3g], .custom-table[b-fzuf79sg3g] {
    vertical-align: middle;
}

.custom-thead[b-fzuf79sg3g] {
    background-color: #F1F4F9;
}

    .custom-thead tr:first-child th:first-child[b-fzuf79sg3g] {
        border-top-left-radius: 20px;
    }

    .custom-thead tr:first-child th:last-child[b-fzuf79sg3g] {
        border-top-right-radius: 20px;
    }

    .custom-thead tr:last-child th:first-child[b-fzuf79sg3g] {
        border-bottom-left-radius: 20px;
    }

    .custom-thead tr:last-child th:last-child[b-fzuf79sg3g] {
        border-bottom-right-radius: 20px;
    }

.custom-table th:not(:last-child)[b-fzuf79sg3g],
.custom-table td:not(:last-child)[b-fzuf79sg3g] {
    border-right: 1px solid #DCDCDC;
}

tbody tr:hover[b-fzuf79sg3g] {
    background-color: #F6F6F6;
}

.custom-tbody tr:nth-child(odd)[b-fzuf79sg3g] {
    background-color: #FFFFFF;
}

.custom-tbody tr:nth-child(even)[b-fzuf79sg3g] {
    background-color: #F6F6F6;
}


/* Pill Button Styles */

.normal-pill[b-fzuf79sg3g] {
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 8px 12px;
    height: 26px;
}

.approvals[b-fzuf79sg3g] {
    background-color: #534FFF;
    color: #FFFFFF;
}

.success[b-fzuf79sg3g] {
    background-color: #4AD991;
    color: #FFFFFF;
}

.warning[b-fzuf79sg3g] {
    background-color: #FCC23C;
    color: #FFFFFF;
}

.danger[b-fzuf79sg3g] {
    background-color: #FD5454;
    color: #FFFFFF;
}

.cancelled[b-fzuf79sg3g] {
    background-color: lightgray;
    color: #FFFFFF;
}

.mud-snackbar[b-fzuf79sg3g] {
    border-radius: 20px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

/* Info snackbar */
.mud-snackbar-info[b-fzuf79sg3g] {
    background-color: #000 !important; 
    opacity: 0.9;
}

/* Success snackbar */
.mud-snackbar-success[b-fzuf79sg3g] {
    background-color: #000 !important;
    opacity: 0.9;
}

/* Warning snackbar */
.mud-snackbar-warning[b-fzuf79sg3g] {
    background-color: #000 !important;
    opacity: 0.9;
}

/* Error snackbar */
.mud-snackbar-error[b-fzuf79sg3g] {
    background-color: #000 !important;
    opacity: 0.9;
}

.overlay[b-fzuf79sg3g] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
}

.loading-text[b-fzuf79sg3g] {
    margin-top: 12px;
    font-weight: 500;
    color: gray;
}



/* /Components/Pages/Chats/Chat.razor.rz.scp.css */
.chat-bubble[b-8m1zicrvso] {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 15px;
    max-width: 70%;
    word-wrap: break-word;
}

.sent[b-8m1zicrvso] {
    background-color: #ff0a1e; /* Light green for sender */
    align-self: flex-end;
    color: white;
}

.received[b-8m1zicrvso] {
    background-color: #f1f0f0; /* Light gray for others */
    align-self: flex-start;
}

.chat-head-wrapper[b-8m1zicrvso] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.chat-head[b-8m1zicrvso] {
    background: #007bff;
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
}

.chat-box-modal[b-8m1zicrvso] {
    position: fixed;
    bottom: 60px;
    right: 20px;
    width: 300px;
    height: 400px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.spinner[b-8m1zicrvso] {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: #EB0A1E; /* Match your theme color */
    animation: spin-b-8m1zicrvso 1s ease infinite;
    margin: auto;
}

@keyframes spin-b-8m1zicrvso {
    to { transform: rotate(360deg); }
}

.skeleton-bubble[b-8m1zicrvso] {
    width: 180px;
    height: 25px;
    border-radius: 12px;
    background: linear-gradient( 90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75% );
    background-size: 200% 100%;
    animation: skeleton-loading-b-8m1zicrvso 1.5s infinite;
}

@keyframes skeleton-loading-b-8m1zicrvso {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}


/* /Components/Pages/Chats/ChatThreads.razor.rz.scp.css */
body[b-v0ef9pvegm] {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
}

.card-title-container[b-v0ef9pvegm] {
    padding: 30px 25px;
    margin: 20px;
    border-radius: 15px;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: block;
    text-align: left;
}

    .card-title-container > p:first-child[b-v0ef9pvegm] {
        text-align: center;
        margin-bottom: 15px;
    }

    .card-title-container > p:last-child[b-v0ef9pvegm] {
        text-align: center;
        margin-top: 20px;
    }

.section-title[b-v0ef9pvegm] {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    display: block;
    text-align: left;
}

.body_section[b-v0ef9pvegm] {
    display: flex;
    flex-direction: column;
    padding: 20px 25px;
    margin-bottom: 20px;
    gap: 25px;
    width: 100%;
    box-sizing: border-box;
}

.content-wrapper[b-v0ef9pvegm] {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.trip-accordion-wrapper[b-v0ef9pvegm] {
    display: flex;
    flex-direction: column;
    /*gap: 5px;*/
    width: 100%;
}

.trip-accordion-item[b-v0ef9pvegm] {
    background-color: transparent;
    /*border-radius: 10px;*/
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);*/
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    margin-bottom: 10px;
}

    .trip-accordion-item:hover[b-v0ef9pvegm] {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

.accordion-header[b-v0ef9pvegm] {
    padding: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background-color: transparent;
    border-bottom: 1px solid #edf2f7;
    transition: background-color 0.2s ease;
}

    .accordion-header.active[b-v0ef9pvegm] {
        background-color: #f7fafc;
    }

    .accordion-header:hover[b-v0ef9pvegm] {
        background-color: #f7fafc;
    }

.accordion-title-group[b-v0ef9pvegm] {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: flex-start;
}

.accordion-title[b-v0ef9pvegm] {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.accordion-date[b-v0ef9pvegm] {
    font-size: 14px;
    color: #718096;
    margin-top: 4px;
    white-space: nowrap;
}

.accordion-status-and-icon[b-v0ef9pvegm] {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    white-space: nowrap;
}

.accordion-mini-rating[b-v0ef9pvegm] {
    display: flex;
    align-items: center;
    gap: 3px;
}

.mini-star[b-v0ef9pvegm] {
    font-size: 14px;
}

.status-text[b-v0ef9pvegm] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    font-size: 0.9em;
    transition: background-color 2.4s ease, color 2.4s ease, border-color .4s ease;
}

    .status-text.completed[b-v0ef9pvegm] {
        background-color: #e6ffe6;
        color: #28a745;
        border: 1px solid #28a745;
    }

    .status-text.pending[b-v0ef9pvegm] {
        background-color: #fff8e6;
        color: #ffc107;
        border: 1px solid #ffc107;
    }

    .status-text.ongoing[b-v0ef9pvegm] {
        background-color: #e0f2fe;
        color: #2196f3;
        border: 1px solid #2196f3;
    }

    .status-text.clickable-pending[b-v0ef9pvegm] {
        cursor: pointer;
        transition: background-color 0.2s ease, border-color 0.2s ease;
    }

        .status-text.clickable-pending:hover[b-v0ef9pvegm] {
            background-color: #ffe08a;
            border-color: #e0a800;
        }

    .status-text.status-for-pickup[b-v0ef9pvegm] {
        color: #6c757d;
        background-color: #e9ecef;
        border: 1px solid #6c757d;
    }

    .status-text.status-for-dropoff[b-v0ef9pvegm] {
        color: #ffc107;
        background-color: #fff3cd;
        border: 1px solid #ffc107;
    }

@keyframes status-pulse-b-v0ef9pvegm {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.status-text.animate-pulse[b-v0ef9pvegm] {
    animation: status-pulse-b-v0ef9pvegm 0.6s ease-out;
}

.accordion-icon[b-v0ef9pvegm] {
    font-size: 18px;
    color: #a0aec0;
    transition: transform 0.3s ease;
}

    .accordion-icon.rotate[b-v0ef9pvegm] {
        transform: rotate(180deg);
    }

.accordion-content[b-v0ef9pvegm] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
}

    .accordion-content.expanded[b-v0ef9pvegm] {
        max-height: 500px;
        padding: 20px 25px;
    }

.trip-route[b-v0ef9pvegm] {
    display: flex;
    align-items: center;
    font-size: 1.2em;
    margin-bottom: 5px;
    color: #2d3748;
    flex-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.route-icon[b-v0ef9pvegm] {
    font-size: 1.1em;
    margin-right: 5px;
    color: #e74c3c;
    flex-shrink: 0;
}

.trip-route .route-icon + .bi-arrow-right + .route-icon[b-v0ef9pvegm] {
    margin-left: 8px;
}

.route-arrow[b-v0ef9pvegm] {
    font-size: 1em;
    margin: 0 8px;
    color: #4a5568;
    flex-shrink: 0;
}

.trip-details-line[b-v0ef9pvegm] {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 0.9em;
    color: #6c757d;
    gap: 0px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.driver-name[b-v0ef9pvegm] {
    margin: 0;
    white-space: nowrap;
    font-weight: 500;
}

.rated-section[b-v0ef9pvegm] {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.rated-heading[b-v0ef9pvegm] {
    font-size: 16px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 10px;
}

.overall-rating-display[b-v0ef9pvegm] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.overall-rating-label[b-v0ef9pvegm] {
    color: #4a5568;
    font-size: 16px;
    font-weight: 500;
}

.bi[b-v0ef9pvegm] {
    font-family: "bootstrap-icons" !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.star-yellow[b-v0ef9pvegm] {
    color: #ffc107;
}

.star-gray[b-v0ef9pvegm] {
    color: #ccc;
}

.star-blue[b-v0ef9pvegm] {
    color: #4299e1;
}

.overall-rating-value[b-v0ef9pvegm] {
    font-size: 14px;
    color: #718096;
    font-weight: 500;
}

.individual-ratings-summary[b-v0ef9pvegm] {
    font-size: 13px;
    color: #a0aec0;
    margin-top: 8px;
    line-height: 1.4;
}

.trip-comment-display[b-v0ef9pvegm] {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
}

.comment-label[b-v0ef9pvegm] {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 5px;
    display: block;
}

.comment-text[b-v0ef9pvegm] {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
    background-color: #f7fafc;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #edf2f7;
}

.rate-trip-button[b-v0ef9pvegm] {
    display: none;
}

.no-trips-message[b-v0ef9pvegm] {
    color: #718096;
    font-size: 18px;
    margin-top: 40px;
    text-align: center;
    width: 100%;
}

.modal-overlay[b-v0ef9pvegm] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 15px;
    box-sizing: border-box;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.modal-container[b-v0ef9pvegm] {
    background-color: #FFFFFF;
    border-radius: 15px;
    width: 95%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    box-sizing: border-box;
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-container-cancel-booking[b-v0ef9pvegm] {
    background-color: #FFFFFF;
    border-radius: 15px;
    width: 95%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    box-sizing: border-box;
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-content-area[b-v0ef9pvegm] {
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.modal-header[b-v0ef9pvegm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #edf2f7;
    position: relative;
}

.modal-title-text[b-v0ef9pvegm] {
    font-size: 26px;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.close-modal-icon[b-v0ef9pvegm] {
    cursor: pointer;
    font-size: 24px;
    color: #a0aec0;
    transition: color 0.2s ease;
    position: static;
    top: auto;
    right: auto;
}

    .close-modal-icon:hover[b-v0ef9pvegm] {
        color: #2d3748;
    }

.modal-rating-section[b-v0ef9pvegm] {
    margin-bottom: 25px;
    text-align: center;
}

.modal-rating-label[b-v0ef9pvegm] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

    .modal-rating-label.required-field[b-v0ef9pvegm]::after {
        content: ' *';
        color: #dc3545;
        margin-left: 4px;
    }

.star-input-group[b-v0ef9pvegm] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

    /* Base size for stars */
    .star-input-group .star-input[b-v0ef9pvegm] {
        font-size: 30px;
    }

.star-input[b-v0ef9pvegm] {
    cursor: pointer;
    transition: transform 100ms ease-in-out, color 0.2s ease;
}

    .star-input:hover[b-v0ef9pvegm] {
        transform: scale(1.15);
        color: #f6ad55;
    }

    .star-input.selected[b-v0ef9pvegm] {
        color: #f6ad55;
        transform: scale(1.05);
        animation: star-selected-pulse-b-v0ef9pvegm 0.3s ease-out;
    }

@keyframes star-selected-pulse-b-v0ef9pvegm {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.05);
    }
}

.modal-overall-rating-display[b-v0ef9pvegm] {
    margin-top: 30px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #e2e8f0;
    border-radius: 10px;
    border: 1px solid #cbd5e0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.star-display-group[b-v0ef9pvegm] {
    display: flex;
    align-items: center;
    /* This will center the stars in the overall rating section */
    justify-content: center;
    /* This creates space between stars */
    gap: 12px;
}

.overall-star-display[b-v0ef9pvegm] {
    font-size: 32px;
}

.overall-rating-value-large[b-v0ef9pvegm] {
    margin-left: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
}

.comment-textarea[b-v0ef9pvegm] {
    width: 100%;
    min-height: 100px;
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #4a5568;
    resize: vertical;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .comment-textarea:focus[b-v0ef9pvegm] {
        outline: none;
        border-color: #4299e1;
        box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.4);
    }

    .comment-textarea:required:invalid[b-v0ef9pvegm] {
        border-color: #dc3545;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    }

.validation-message[b-v0ef9pvegm] {
    color: #dc3545;
    font-size: 0.85em;
    margin-top: 5px;
}

.modal-actions-group[b-v0ef9pvegm] {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    flex-shrink: 0;
    padding-top: 15px;
    border-top: 1px solid #edf2f7;
}

.modal-skip-button[b-v0ef9pvegm] {
    display: none;
}

.modal-cancel-button[b-v0ef9pvegm] {
    background-color: #E4ECF7;
    color: #505780;
    border: 1px solid #E4ECF7;
    cursor: pointer;
    font-weight: 600;
    border-radius: 100px;
    padding: 12px 20px;
    font-size: 12px;
    height: 36px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

    .modal-cancel-button:hover[b-v0ef9pvegm] {
        background-color: #d8dde3;
        transform: translateY(-2px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .modal-cancel-button:focus[b-v0ef9pvegm] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(160, 174, 192, 0.6);
    }

.modal-submit-button[b-v0ef9pvegm] {
    background-color: #EB0A1A;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 100px;
    padding: 12px 20px;
    font-size: 12px;
    height: 36px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

    .modal-submit-button:not(:disabled):hover[b-v0ef9pvegm] {
        background-color: #A90512;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(135, 135, 135, 0.6);
    }

    .modal-submit-button:not(:disabled):focus[b-v0ef9pvegm] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(135, 135, 135, 0.6);
    }

    .modal-submit-button:disabled[b-v0ef9pvegm] {
        background-color: #cccccc;
        color: #666666;
        box-shadow: none;
        cursor: not-allowed;
        pointer-events: none;
        transform: none;
        border: none;
    }

.filter-and-title-group[b-v0ef9pvegm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-dropdown-container[b-v0ef9pvegm] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-label[b-v0ef9pvegm] {
    font-size: 15px;
    font-weight: 600;
    color: #4a5568;
    white-space: nowrap;
}

.filter-dropdown[b-v0ef9pvegm] {
    padding: 10px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #2d3748;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23a0aec0%22%20d%3D%22M287%2069.9H5.4c-7.2%200-11.4%208.5-7%2014.2l140.7%20140.8c4.6%204.6%2012.3%204.6%2016.9%200L294%2084.1c4.4-5.7.2-14.2-7-14.2z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .filter-dropdown:hover[b-v0ef9pvegm] {
        border-color: #a0aec0;
    }

    .filter-dropdown:focus[b-v0ef9pvegm] {
        outline: none;
        border-color: #4299e1;
        box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.4);
    }

.pagination-controls[b-v0ef9pvegm] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 8px;
}

.pagination-button[b-v0ef9pvegm] {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s, border-color 0.2s;
    min-width: 40px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .pagination-button:hover:not(:disabled)[b-v0ef9pvegm] {
        background-color: #e0e0e0;
        border-color: #bbb;
    }

    .pagination-button:disabled[b-v0ef9pvegm] {
        cursor: not-allowed;
        opacity: 0.6;
        background-color: #fafafa;
        color: #999;
    }

    .pagination-button.active-page[b-v0ef9pvegm] {
        background-color: #007bff;
        color: white;
        border-color: #007bff;
        font-weight: bold;
    }

        .pagination-button.active-page:hover[b-v0ef9pvegm] {
            background-color: #0056b3;
            border-color: #0056b3;
        }

.mini-dashboard[b-v0ef9pvegm] {
    background-color: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.dashboard-title[b-v0ef9pvegm] {
    font-size: 24px;
    color: #2d3748;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.dashboard-stats-grid[b-v0ef9pvegm] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-content: center;
}

.dashboard-stat-item[b-v0ef9pvegm] {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border: 1px solid #ebf4ff;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease-in-out;
}

    .dashboard-stat-item:hover[b-v0ef9pvegm] {
        transform: translateY(-3px);
    }

.dashboard-icon[b-v0ef9pvegm] {
    font-size: 36px;
    color: red;
    margin-bottom: 10px;
}

.stat-content[b-v0ef9pvegm] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value[b-v0ef9pvegm] {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 5px;
}

.stat-label[b-v0ef9pvegm] {
    font-size: 14px;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.snackbar[b-v0ef9pvegm] {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    position: fixed;
    z-index: 1050;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: 17px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: visibility 0.5s, opacity 0.5s ease-in-out;
}

    .snackbar.show[b-v0ef9pvegm] {
        visibility: visible;
        opacity: 1;
    }

.snackbar-success[b-v0ef9pvegm] {
    background-color: #4CAF50;
}

.snackbar-error[b-v0ef9pvegm] {
    background-color: #f44336;
}
.snackbar-info[b-v0ef9pvegm] {
    background-color: mintcream;
}

@media (max-width: 767px) {
    .dashboard-stats-grid[b-v0ef9pvegm] {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

    .dashboard-stat-item[b-v0ef9pvegm] {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 15px;
        min-height: 120px;
    }

    .dashboard-icon[b-v0ef9pvegm] {
        font-size: 30px;
        margin-bottom: 2px;
    }

    .stat-content[b-v0ef9pvegm] {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .stat-value[b-v0ef9pvegm] {
        font-size: 20px;
        margin-bottom: 0;
    }

    .stat-label[b-v0ef9pvegm] {
        font-size: 11px;
        line-height: 1.2;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 600px) {
    .card-title-container[b-v0ef9pvegm] {
        margin: 10px;
        padding: 20px;
    }

    .filter-and-title-group[b-v0ef9pvegm] {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .accordion-header[b-v0ef9pvegm] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 0px;
    }

    .accordion-title-group[b-v0ef9pvegm] {
        width: 100%;
        margin-right: 0;
    }

    .accordion-status-and-icon[b-v0ef9pvegm] {
        width: 100%;
        justify-content: flex-end;
        margin-top: 10px;
    }

    .modal-container[b-v0ef9pvegm] {
        width: 95%;
        max-height: calc(100vh - 20px);
        max-height: calc(100dvh - 20px);
    }

    .modal-container-cancel-booking[b-v0ef9pvegm] {
        width: 95%;
        max-height: calc(100vh - 20px);
        max-height: calc(100dvh - 20px);
    }

    .modal-header[b-v0ef9pvegm] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }

    .modal-title-text[b-v0ef9pvegm] {
        font-size: 20px;
    }

    .close-modal-icon[b-v0ef9pvegm] {
        position: absolute;
        top: 5px;
        right: 5px;
        font-size: 18px;
    }

    .modal-content-area[b-v0ef9pvegm] {
        padding: 15px;
    }

    .modal-rating-section[b-v0ef9pvegm] {
        margin-bottom: 15px;
    }

    .modal-rating-label[b-v0ef9pvegm] {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .star-input-group[b-v0ef9pvegm] {
        gap: 8px;
    }

        .star-input-group .star-input[b-v0ef9pvegm] {
            font-size: 28px;
        }

    .modal-overall-rating-display[b-v0ef9pvegm] {
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 15px;
    }

    .overall-star-display[b-v0ef9pvegm] {
        font-size: 26px;
    }

    .overall-rating-value-large[b-v0ef9pvegm] {
        font-size: 20px;
    }

    .comment-textarea[b-v0ef9pvegm] {
        min-height: 80px;
        padding: 10px 12px;
        font-size: 14px;
    }

    .modal-actions-group[b-v0ef9pvegm] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        margin-top: 20px;
        padding-top: 10px;
    }

    .modal-skip-button[b-v0ef9pvegm],
    .modal-cancel-button[b-v0ef9pvegm],
    .modal-submit-button[b-v0ef9pvegm] {
        padding: 10px 15px;
        font-size: 15px;
    }

    .accordion-content.expanded .rated-heading[b-v0ef9pvegm] {
        font-size: 15px;
    }

    .accordion-content.expanded .overall-rating-label[b-v0ef9pvegm] {
        font-size: 14px;
    }

    .accordion-content.expanded .overall-star-display[b-v0ef9pvegm] {
        font-size: 26px;
    }

    .accordion-content.expanded .individual-ratings-summary[b-v0ef9pvegm] {
        font-size: 12px;
    }

    .accordion-content.expanded .comment-label[b-v0ef9pvegm] {
        font-size: 13px;
    }

    .accordion-content.expanded .comment-text[b-v0ef9pvegm] {
        font-size: 13px;
    }

    .accordion-content.expanded .unrated-message[b-v0ef9pvegm] {
        font-size: 14px;
    }

    .accordion-content.expanded[b-v0ef9pvegm] {
        padding: 15px 20px;
    }

    .trip-route[b-v0ef9pvegm] {
        font-size: 1.1em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .route-icon[b-v0ef9pvegm] {
        font-size: 0.8em;
        margin-right: 2px;
    }

    .trip-route .route-icon + .bi-arrow-right + .route-icon[b-v0ef9pvegm] {
        margin-left: 4px;
    }

    .route-arrow[b-v0ef9pvegm] {
        font-size: 0.7em;
        margin: 0 4px;
    }

    .trip-details-line[b-v0ef9pvegm] {
        font-size: 0.75em;
        gap: 2px;
        white-space: nowrap;
    }

    .accordion-date[b-v0ef9pvegm] {
        font-size: 0.75em;
    }
}

@media (max-width: 480px) {
    .pagination-button[b-v0ef9pvegm] {
        padding: 6px 10px;
        font-size: 12px;
        min-width: unset;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .trip-route[b-v0ef9pvegm] {
        font-size: 1.1em;
    }

    .trip-details-line[b-v0ef9pvegm] {
        font-size: 0.7em;
    }

    .accordion-date[b-v0ef9pvegm] {
        font-size: 0.75em;
    }
}

@media (max-width: 420px) {
    .dashboard-stats-grid[b-v0ef9pvegm] {
        gap: 8px;
        padding: 0 5px;
    }

    .dashboard-stat-item[b-v0ef9pvegm] {
        min-height: 100px;
        padding: 10px;
    }

    .dashboard-icon[b-v0ef9pvegm] {
        font-size: 26px;
        margin-bottom: 1px;
    }

    .stat-value[b-v0ef9pvegm] {
        font-size: 18px;
    }

    .stat-label[b-v0ef9pvegm] {
        font-size: 10px;
    }

    .modal-container[b-v0ef9pvegm] {
        padding: 10px;
    }

    .modal-content-area[b-v0ef9pvegm] {
        padding: 15px;
    }

    .modal-title-text[b-v0ef9pvegm] {
        font-size: 20px;
    }
}

/* Pill Button Styles */

.normal-pill[b-v0ef9pvegm] {
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 8px 12px;
    height: 26px;
}

.success[b-v0ef9pvegm] {
    background-color: #4AD991;
    color: #FFFFFF;
}

.warning[b-v0ef9pvegm] {
    background-color: #FCC23C;
    color: #FFFFFF;
}

.danger[b-v0ef9pvegm] {
    background-color: #FD5454;
    color: #FFFFFF;
}

.details-grid[b-v0ef9pvegm] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    font-size: 14px;
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
}

.badge-status[b-v0ef9pvegm] {
    background-color: #5b48f2;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
}

.table-responsive[b-v0ef9pvegm] {
    overflow-x: auto;
    margin-top: 20px;
}

.mt-3[b-v0ef9pvegm] {
    margin-top: 1rem;
}

.mt-4[b-v0ef9pvegm] {
    margin-top: 1.5rem;
}

/* Input & Textarea Styles */
input[b-v0ef9pvegm], textarea[b-v0ef9pvegm] {
    width: 100%;
    max-width: auto;
    padding: 10px 20px;
    border: 1px solid #DFEAF2;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: border 0.3s ease-in-out, height 0.2s ease-in-out;
    color: #101010;
}

/* Textarea Specific Styles */
textarea[b-v0ef9pvegm] {
    height: 123px;
    min-height: 123px;
    max-height: 300px;
    resize: vertical;
    border-radius: 20px;
    overflow-y: auto;
    display: block;
    transition: border 0.3s ease-in-out;
}

    input[b-v0ef9pvegm]::placeholder, textarea[b-v0ef9pvegm]::placeholder {
        color: #718EBF;
        transition: color 0.3s ease-in-out;
    }

    input:focus[b-v0ef9pvegm], textarea:focus[b-v0ef9pvegm] {
        border-color: #FE6A6E;
    }

        input:focus[b-v0ef9pvegm]::placeholder, textarea:focus[b-v0ef9pvegm]::placeholder {
            color: #718EBF;
        }

    /* Disabled Input & Textarea Styles */
    input:disabled[b-v0ef9pvegm], textarea:disabled[b-v0ef9pvegm] {
        background-color: #EBF2FA !important;
        color: #A0A0A0;
        border: 1px solid #EBF2FA;
        cursor: not-allowed;
        opacity: 0.6;
        pointer-events: none;
        user-select: none;
    }

.textarea-container[b-v0ef9pvegm] {
    position: relative;
    width: 100%;
}

#charCounter[b-v0ef9pvegm] {
    position: absolute;
    bottom: -20px;
    right: 5px;
    font-size: 12px;
    font-weight: 400;
    color: #89939E;
}

/* Error Styling */
.input-error[b-v0ef9pvegm] {
    background-color: #FFE3E3;
    border: 1px solid #FFE3E3;
}

.status-message[b-v0ef9pvegm] {
    font-size: 12px;
    font-weight: 400;
    position: absolute;
    bottom: -20px;
    left: 5px;
}

/* Wrapper for inputs */
.input-wrapper[b-v0ef9pvegm] {
    position: relative;
    width: 100%;
}

.vetical-text[b-v0ef9pvegm] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.horizontal-text[b-v0ef9pvegm] {
    display: flex;
    align-items: center;
    gap: 8px;
}



.chatTitle[b-v0ef9pvegm] {
    font-size: 0.7em;
}

.chatTitle2[b-v0ef9pvegm] {
    font-size: 1em;
}


@media (min-width: 480px) {
    .chatTitle[b-v0ef9pvegm] {
        font-size: 0.5em;
    }
}


@media (min-width: 768px) {
    .chatTitle[b-v0ef9pvegm] {
        font-size: 0.7em;
    }
}

@media (min-width: 1200px) {
    .chatTitle[b-v0ef9pvegm] {
        font-size: 0.7em;
    }
}

@media (min-width: 480px) {
    .chatTitle2[b-v0ef9pvegm] {
        font-size: 0.4em;
    }
}


@media (min-width: 768px) {
    .chatTitle2[b-v0ef9pvegm] {
        font-size: 0.6em;
    }
}

@media (min-width: 1200px) {
    .chatTitle2[b-v0ef9pvegm] {
        font-size: 0.6em;
    }
}

.mud-snackbar[b-v0ef9pvegm] {
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

/* Info snackbar */
.
-info[b-v0ef9pvegm] {
    background-color: #2196f3 !important; /* default blue */
}


/* --- General Modern Styles --- */
/*body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;*/ /* Softer background */
/*color: #333;
}

.card-title-container {
    padding: 30px 25px;*/ /* Slightly adjusted padding */
/*margin: 20px;
    border-radius: 15px;*/ /* Softer corners */
/*background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);*/ /* More modern shadow */
/*display: block;
    text-align: left;*/ /* Align text to left */
/*}

.section-title {
    font-size: 24px;*/ /* Larger, more prominent */
/*font-weight: 700;
    color: #2d3748;*/ /* Darker, more serious tone */
/*margin-bottom: 20px;*/ /* More space */
/*display: block;
    text-align: left;*/ /* Align to left */
/*}

.body_section {
    display: flex;
    flex-direction: column;
    padding: 20px 25px;*/ /* Adjusted padding */
/*margin-bottom: 20px;
    gap: 25px;*/ /* Increased gap */
/*width: 100%;
    box-sizing: border-box;
}

.content-wrapper {*/ /* New class for content grouping */
/*display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 1200px;*/ /* Max width for content */
/*margin: 0 auto;*/ /* Center the content */
/*}*/

/* --- Trip Accordion Styles --- */
/*.trip-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;*/ /* Smaller gap between accordion items */
/*width: 100%;
}

.trip-accordion-item {
    background: #FFFFFF;
    border-radius: 10px;*/ /* Softer corners for items */
/*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);*/ /* Lighter shadow for individual items */
/*overflow: hidden;*/ /* Ensures content is clipped during collapse */
/*transition: box-shadow 0.3s ease;
}

    .trip-accordion-item:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);*/ /* Slightly more pronounced shadow on hover */
/*}

.accordion-header {
    padding: 20px 25px;*/ /* Padding for header */
/*display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background-color: #ffffff;
    border-bottom: 1px solid #edf2f7;*/ /* Subtle separator */
/*transition: background-color 0.2s ease;
}

    .accordion-header.active {
        background-color: #f7fafc;*/ /* Slightly different background when active */
/*}

    .accordion-header:hover {
        background-color: #f7fafc;*/ /* Light hover effect */
/*}

.accordion-title-group {
    display: flex;
    flex-direction: column;*/ /* Stack title and date */
/*flex-grow: 1;
}

.accordion-title {
    font-size: 18px;*/ /* Slightly smaller than card title */
/*font-weight: 600;
    color: #2d3748;
    margin: 0;*/ /* Remove default margin */
/*}*/

/* Original size for desktop, will be overridden by media queries for mobile */
/*.accordion-date {
    font-size: 14px;
    color: #718096;
    margin-top: 4px;*/ /* Space between title and date */
/*}

.accordion-status-and-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    white-space: nowrap;*/ /* Prevents wrapping */
/*}

.accordion-mini-rating {
    display: flex;
    align-items: center;
    gap: 3px;*/ /* Smaller gap for mini stars */
/*}

.mini-star {
    font-size: 14px;*/ /* Smaller stars for header summary */
/*}

.status-text {
    white-space: nowrap;*/ /* Keeps "Pending Rating" on one line */
/*overflow: hidden;
    text-overflow: ellipsis;
}

    .status-text.rated {
        background-color: #e6fffa;*/ /* Light green background */
/*color: #38a169;*/ /* Green text */
/*}

    .status-text.pending {
        background-color: #fffaf0;*/ /* Light orange background */
/*color: #dd6b20;*/ /* Orange text */
/*}

.accordion-icon {
    font-size: 18px;
    color: #a0aec0;
    transition: transform 0.3s ease;*/ /* Smooth rotation */
/*}

    .accordion-icon.rotate {
        transform: rotate(180deg);*/ /* Rotate 180 degrees when expanded */
/*}

.accordion-content {
    max-height: 0;*/ /* Initially collapsed */
/*overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;*/ /* Smooth collapse/expand */
/*padding: 0 25px;*/ /* Horizontal padding, vertical will be 0 */
/*}

    .accordion-content.expanded {
        max-height: 500px;*/ /* Arbitrary large value for expansion */
/*padding: 20px 25px;*/ /* Apply vertical padding when expanded */
/*}*/

/* --- Content within accordion (formerly trip-card-item content) --- */
/*.rated-section {
    margin-top: 0;*/ /* Reset margin as padding is on parent */
/*padding-top: 0;
    border-top: none;*/ /* Reset border */
/*}

.rated-heading {
    font-size: 16px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 10px;
}

.overall-rating-display {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.overall-rating-label {
    color: #4a5568;
    font-size: 16px;
    font-weight: 500;
}*/

/* --- Star colors --- */
/*.bi {
    font-family: "bootstrap-icons" !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.star-yellow {
    color: #f6ad55;*/ /* Softer yellow/orange */
/*}

.star-gray {
    color: #cbd5e0;*/ /* Lighter gray for empty stars */
/*}

.star-blue {
    color: #4299e1;*/ /* Modern blue for overall rating */
/*}

.overall-rating-value {
    font-size: 14px;
    color: #718096;
    font-weight: 500;
}

.individual-ratings-summary {
    font-size: 13px;*/ /* Slightly smaller for detail */
/*color: #a0aec0;*/ /* More muted */
/*margin-top: 8px;
    line-height: 1.4;
}

.trip-comment-display {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;*/ /* Subtle dashed separator */
/*}

.comment-label {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 5px;
    display: block;
}

.comment-text {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
    background-color: #f7fafc;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #edf2f7;
}*/

/* This rule hides the "Rate Trip" button as it's replaced by the clickable status */
/*.rate-trip-button {
    display: none;
}

.no-trips-message {
    color: #718096;
    font-size: 18px;
    margin-top: 40px;
    text-align: center;
    width: 100%;
}*/

/* --- Modal Styles - Modernized --- */
/*.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 15px;
    box-sizing: border-box;
    backdrop-filter: blur(3px);
}

.modal-container {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 0;
    max-width: 500px;
    width: 95%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    box-sizing: border-box;
}

.modal-content-area {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(90vh - 60px);
    width: 100%;
    box-sizing: border-box;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #edf2f7;
}

.modal-title-text {
    font-size: 26px;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.close-modal-icon {
    cursor: pointer;
    font-size: 24px;
    color: #a0aec0;
    transition: color 0.2s ease;
}

    .close-modal-icon:hover {
        color: #2d3748;
    }

.modal-rating-section {
    margin-bottom: 20px;
}

.modal-rating-label {
    display: flex;*/ /* Allow info icon next to label */
/*align-items: center;
    color: #4a5568;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}*/

/* Star input group in modal */
/*.star-input-group {
    display: flex;
    align-items: center;
    font-size: 32px;
    gap: 8px;
}

.star-input {
    cursor: pointer;
    transition: transform 100ms ease-in-out, color 0.2s ease;
}*/

/* Hover effect for stars */
/*.star-input:hover {
        transform: scale(1.15);
        color: #f6ad55;*/ /* Yellow/orange on hover */
/*}*/

/* Click confirmation (selected star) */
/*.star-input.selected {
        color: #f6ad55;*/ /* Keep yellow/orange when selected */
/*transform: scale(1.05);*/ /* Slight bounce/pulse on click */
/*animation: star-selected-pulse 0.3s ease-out;
    }

@keyframes star-selected-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.05);
    }
}

.modal-overall-rating-display {
    margin-top: 30px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #e2e8f0;
    border-radius: 10px;
    border: 1px solid #cbd5e0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.star-display-group {
    display: flex;
    align-items: center;
}

.overall-star-display {
    font-size: 32px;
    gap: 8px;
}

.overall-rating-value-large {
    margin-left: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
}

.comment-textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #4a5568;
    resize: vertical;*/ /* Allow vertical resizing */
/*box-sizing: border-box;*/ /* Include padding in width */
/*transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .comment-textarea:focus {
        outline: none;
        border-color: #4299e1;
        box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.4);
    }

.modal-actions-group {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.modal-skip-button {
    padding: 12px 25px;
    border: 1px solid #a0aec0;*/ /* Lighter border for skip */
/*color: #718096;*/ /* Muted text color */
/*border-radius: 8px;
    background-color: transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    margin-right: auto;*/ /* Pushes it to the left */
/*}

    .modal-skip-button:hover {
        background-color: #edf2f7;
        color: #4a5568;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .modal-skip-button:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(160, 174, 192, 0.4);
    }

.modal-cancel-button {
    padding: 12px 25px;
    border: 1px solid #cbd5e0;
    color: #4a5568;
    border-radius: 8px;
    background-color: transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

    .modal-cancel-button:hover {
        background-color: #edf2f7;
        color: #2d3748;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .modal-cancel-button:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(160, 174, 192, 0.6);
    }

.modal-submit-button {
    padding: 12px 25px;
    background-color: #48bb78;
    color: #FFFFFF;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

    .modal-submit-button:hover {
        background-color: #38a169;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(72, 187, 120, 0.4);
    }

    .modal-submit-button:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.6);
    }*/

/* --- New style for clickable pending status --- */
/*.clickable-pending {
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

    .clickable-pending:hover {
        background-color: #fbd38d;*/ /* Slightly darker orange on hover */
/*color: #9c4221;*/ /* Darker text */
/*}*/

/* Existing .status-text.pending style (ensure it's defined as well) */
/*.status-text.pending {
    background-color: #fffaf0;*/ /* Light orange background */
/*color: #dd6b20;*/ /* Orange text */
/*}*/

/* --- New Styles for Filter Dropdown --- */
/*.filter-and-title-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;*/ /* Space below this group */
/*flex-wrap: wrap;*/ /* Allow wrapping on smaller screens */
/*gap: 15px;*/ /* Gap between title and dropdown if they wrap */
/*}

.filter-dropdown-container {
    display: flex;
    align-items: center;
    gap: 10px;*/ /* Space between label and dropdown */
/*}

.filter-label {
    font-size: 15px;
    font-weight: 600;
    color: #4a5568;
    white-space: nowrap;*/ /* Prevent label from wrapping */
/*}

.filter-dropdown {
    padding: 10px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #2d3748;
    cursor: pointer;
    appearance: none;*/ /* Remove default system dropdown arrow */
/*-webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23a0aec0%22%20d%3D%22M287%2069.9H5.4c-7.2%200-11.4%208.5-7%2014.2l140.7%20140.8c4.6%204.6%2012.3%204.6%2016.9%200L294%2084.1c4.4-5.7.2-14.2-7-14.2z%22%2F%3E%3C%2Fsvg%3E');*/ /* Custom arrow */
/*background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;*/ /* Size of the custom arrow */
/*transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .filter-dropdown:hover {
        border-color: #a0aec0;
    }

    .filter-dropdown:focus {
        outline: none;
        border-color: #4299e1;
        box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.4);
    }*/

/* --- Pagination Controls --- */
/*.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 8px;*/ /* Space between buttons */
/*}

.pagination-button {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
    padding: 8px 15px;*/ /* Default padding for larger screens */
/*border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s, border-color 0.2s;
    min-width: 40px;*/ /* Ensure buttons have minimum width */
/*text-align: center;
    white-space: nowrap;*/ /* Prevent text from wrapping */
/*overflow: hidden;*/ /* Hide overflowing text */
/*text-overflow: ellipsis;*/ /* Add ellipsis if text overflows */
/*}

    .pagination-button:hover:not(:disabled) {
        background-color: #e0e0e0;
        border-color: #bbb;
    }

    .pagination-button:disabled {
        cursor: not-allowed;
        opacity: 0.6;
        background-color: #fafafa;
        color: #999;
    }

    .pagination-button.active-page {
        background-color: #007bff;*/ /* Primary blue */
/*color: white;
        border-color: #007bff;
        font-weight: bold;
    }

        .pagination-button.active-page:hover {
            background-color: #0056b3;*/ /* Darker blue on hover */
/*border-color: #0056b3;
        }*/

/* Optional: Adjust accordion item margins if needed after adding pagination */
/*.trip-accordion-item {
    margin-bottom: 10px;*/ /* Consistent spacing */
/*}*/

/* --- Mini Dashboard Container --- */
/*.mini-dashboard {
    background-color: #f8f9fa;*/ /* Light background for the dashboard */
/*border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;*/ /* Space below the dashboard */
/*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.dashboard-title {
    font-size: 24px;
    color: #2d3748;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.dashboard-stats-grid {
    display: grid;*/
/* Default for larger screens: auto-fit will create as many columns as fit, min 150px */
/*grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;*/ /* Space between stat items */
/*justify-content: center;*/ /* Centers the grid if it doesn't fill the full width */
/*}

.dashboard-stat-item {
    display: flex;
    flex-direction: column;*/ /* Stack icon and content vertically */
/*align-items: center;
    background-color: white;
    border: 1px solid #ebf4ff;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease-in-out;
}

    .dashboard-stat-item:hover {
        transform: translateY(-3px);*/ /* Subtle lift on hover */
/*}

.dashboard-icon {
    font-size: 36px;
    color: #007bff;*/ /* A nice blue for icons */
/*margin-bottom: 10px;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;*/ /* Darker color for the main number */
/*margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}*/

/* Adjust card-title-container padding if necessary to make space for the dashboard */
/*.card-title-container {
    padding: 25px;*/ /* Adjust as needed */
/*}*/

/* Ensure current date text is not pushed too far */
/*.card-title-container > p:first-child {
        text-align: center;
        margin-bottom: 15px;
    }*/

/* Adjust the lower text after the dashboard */
/*.card-title-container > p:last-child {
        text-align: center;
        margin-top: 20px;
    }

.trip-route {
    display: flex;
    align-items: center;
    font-size: 1.2em;*/ /* Slightly smaller than default h2, adjust as needed */
/*margin-bottom: 5px;*/ /* Space between route and details */
/*color: #2d3748;*/ /* Darker text */
/*flex-wrap: nowrap;*/ /* ! Keep route on one line */
/*overflow: hidden;*/ /* ! Hide overflow text */
/*text-overflow: ellipsis;*/ /* ! Show ellipsis for overflow */
/*}

.route-icon {
    font-size: 1.1em;*/ /* Adjust icon size relative to text */
/*margin-right: 5px;
    color: red;*/ /* Pin icon color */
/*flex-shrink: 0;*/ /* Prevent pin icon from shrinking */
/*}*/

/* Spacing for the second pin icon */
/*.trip-route .route-icon + .bi-arrow-right + .route-icon {
    margin-left: 8px;*/ /* Space before the second pin icon */
/*}

.route-arrow {
    font-size: 1em;*/ /* Adjust arrow size */
/*margin: 0 8px;*/ /* Space around arrow */
/*color: #4a5568;*/ /* Arrow color */
/*flex-shrink: 0;*/ /* Prevent arrow from shrinking */
/*}

.trip-details-line {
    display: flex;
    flex-direction: column;*/ /* Stack driver and date vertically */
/*justify-content: flex-start;*/ /* Align to start */
/*align-items: flex-start;*/ /* Align contents to the left */
/*font-size: 0.9em;*/ /* Base smaller text for details */
/*color: #6c757d;*/ /* Lighter grey for details */
/*gap: 0px;*/ /* Reduced gap between stacked items */
/*white-space: nowrap;*/ /* Keep individual lines on one line */
/*overflow: hidden;
    text-overflow: ellipsis;
}*/

/* Base style for accordion-date (desktop) */
/*.accordion-date {
    margin: 0;*/ /* Remove default paragraph margins */
/*white-space: nowrap;*/ /* Prevent date from wrapping */
/*}

.driver-name {
    margin: 0;*/ /* Remove default paragraph margins */
/*white-space: nowrap;*/ /* Prevent driver name from wrapping */
/*font-weight: 500;
}*/

/* Adjust accordion-title-group to ensure proper alignment */
/*.accordion-title-group {
    display: flex;
    flex-direction: column;*/ /* Stack route and details vertically */
/*align-items: flex-start;*/ /* Align content to the left */
/*flex-grow: 1;*/ /* Allow it to take available space */
/*}*/

/* Ensure the full accordion header is still a flex container */
/*.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;*/
/* ... other existing styles for accordion-header ... */
/*}*/

/* Make sure mini-rating aligns correctly */
/*.accordion-mini-rating {
    display: flex;
    align-items: center;
    gap: 3px;
}*/

/* --- Responsive Adjustments --- */
/*@media (max-width: 600px) {
    .card-title-container {
        margin: 10px;
        padding: 20px;
    }

    .filter-and-title-group {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .accordion-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 20px;*/ /* Adjust header padding on mobile */
/*}

    .accordion-title-group {
        width: 100%;
        margin-right: 0;
    }

    .accordion-status-and-icon {
        width: 100%;
        justify-content: flex-end;*/ /* Push status to the right */
/*margin-top: 10px;*/ /* Add some space above status on mobile */
/*}

    .modal-container {
        width: 95%;
        padding: 20px;
    }

    .modal-title-text {
        font-size: 20px;
    }*/

/* Adjust font sizes inside the expanded trip card content for mobile */
/*.accordion-content.expanded .rated-heading {
        font-size: 15px;*/ /* Slightly smaller heading */
/*}

    .accordion-content.expanded .overall-rating-label {
        font-size: 14px;*/ /* Smaller label for overall rating */
/*}

    .accordion-content.expanded .overall-star-display {
        font-size: 26px;*/ /* Smaller stars in overall rating */
/*}

    .accordion-content.expanded .individual-ratings-summary {
        font-size: 12px;*/ /* Smaller text for individual ratings summary */
/*}

    .accordion-content.expanded .comment-label {
        font-size: 13px;*/ /* Smaller comment label */
/*}

    .accordion-content.expanded .comment-text {
        font-size: 13px;*/ /* Smaller comment text */
/*}

    .accordion-content.expanded .unrated-message {
        font-size: 14px;*/ /* Smaller message for unrated trips */
/*}*/

/* Optional: Adjust padding of expanded content for more compact look */
/*.accordion-content.expanded {
        padding: 15px 20px;*/ /* Slightly reduced padding */
/*}*/

/* Smaller sizes for pin, trip route, date, and driver objects */
/*.trip-route {
        font-size: 0.9em;*/ /* Even smaller trip route text */
/*white-space: nowrap;*/ /* Force onto one line */
/*overflow: hidden;*/ /* Hide anything that goes beyond the line */
/*text-overflow: ellipsis;*/ /* Add "..." if text overflows */
/*}

    .route-icon {
        font-size: 0.8em;*/ /* Even smaller pin icon */
/*margin-right: 2px;*/ /* Reduced margin */
/*}

    .trip-route .route-icon + .bi-arrow-right + .route-icon {
        margin-left: 4px;*/ /* Reduced space before the second pin */
/*}

    .route-arrow {
        font-size: 0.7em;*/ /* Even smaller arrow */
/*margin: 0 4px;*/ /* Reduced margin around arrow */
/*}

    .trip-details-line {
        font-size: 0.75em;*/ /* Base smaller text for details (driver, etc.) */
/*gap: 2px;*/ /* Reduced gap between stacked items (driver and date) */
/*white-space: nowrap;*/ /* Keep individual lines on one line */
/*}

    .accordion-date {
        font-size: 0.75em;*/ /* Match .trip-details-line font size */
/*}
}*/

/* --- Dashboard Specific Mobile Adjustments (Fixed 2x2 Layout & Spacing) --- */
/*@media (max-width: 767px) {*/ /* Applies to all typical phone screen widths (including iPhone 13 Pro Max) */
/*.dashboard-stats-grid {
        grid-template-columns: repeat(2, 1fr);*/ /* Force 2 columns */
/*gap: 15px;*/ /* Spacing between cards */
/*padding: 0 10px;*/ /* Add some horizontal padding to the grid itself */
/*}

    .dashboard-stat-item {*/
/* Revert to standard flex properties for better predictability within grid */
/*display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;*/ /* Vertically center content */
/*padding: 15px;*/ /* Maintain consistent padding */
/*min-height: 120px;*/ /* Ensure a minimum height for the boxes, adjust as needed */
/* Removed position absolute and padding-bottom: 100% to prevent unexpected layout shifts */
/*}

    .dashboard-icon {
        font-size: 30px;*/ /* Adjusted icon size for mobile */
/*margin-bottom: 2px;*/ /* **Adjusted: Reduced margin below the icon to move it higher** */
/*}

    .stat-content {
        display: flex;
        flex-direction: column;
        align-items: center;*/
/* No need for absolute positioning here, let flexbox handle it */
/*gap: 4px;*/ /* **Added margin between numerical value and label** */
/*}

    .stat-value {
        font-size: 20px;*/ /* Adjusted font size for mobile numbers */
/*margin-bottom: 0;*/ /* Reset margin here, gap on parent `stat-content` handles spacing */
/*}

    .stat-label {
        font-size: 11px;*/ /* Adjusted font size for mobile labels */
/*line-height: 1.2;
        text-align: center;
        white-space: nowrap;*/ /* Try to keep labels on one line */
/*overflow: hidden;
        text-overflow: ellipsis;*/ /* Add ellipsis if labels overflow */
/*}
}

@media (max-width: 420px) {*/ /* Further adjustments for very small screens */
/*.dashboard-stats-grid {
        gap: 8px;*/ /* Reduce gap slightly more */
/*padding: 0 5px;
    }

    .dashboard-stat-item {
        min-height: 100px;*/ /* Reduce minimum height for very small screens */
/*padding: 10px;*/ /* Reduce padding for very small screens */
/*}

    .dashboard-icon {
        font-size: 26px;*/ /* Smaller icon for very small screens */
/*margin-bottom: 1px;*/ /* **Adjusted: Further reduced margin for very small screens** */
/*}

    .stat-value {
        font-size: 18px;*/ /* Smaller value for very small screens */
/*}

    .stat-label {
        font-size: 10px;*/ /* Smaller label for very small screens */
/*}
}*/

/* --- Responsive Adjustments for Pagination Buttons --- */
/*@media (max-width: 480px) {
    .pagination-button {
        padding: 6px 10px;*/ /* Reduced padding for smaller screens */
/*font-size: 12px;*/ /* Smaller font size for pagination buttons */
/*min-width: unset;*/ /* Allow button to shrink if content is small */
/*white-space: nowrap;*/ /* Prevent text from wrapping */
/*overflow: hidden;*/ /* Hide overflowing text */
/*text-overflow: ellipsis;*/ /* Add ellipsis if text overflows */
/*}*/

/* For very small screens, make sure these are on one line too */
/*.trip-route {
        font-size: 0.85em;*/ /* Slightly smaller for very small screens */
/*}

    .trip-details-line {
        font-size: 0.7em;*/ /* Slightly smaller for very small screens */
/*}

    .accordion-date {
        font-size: 0.75em;*/ /* Match .trip-details-line font size */
/*}
}*/
/* /Components/Pages/EmailNotification/ApprovedBooking.razor.rz.scp.css */
body[b-jhkdrrs0qp] {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
}

.main-text[b-jhkdrrs0qp] {
    font-size: 26px;
    font-weight: bold;
    margin: 10px;
}

.sub-main-text[b-jhkdrrs0qp] {
    font-size: 26px;
    font-weight: 400;
    margin: 10px;
}

.container[b-jhkdrrs0qp] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* or the height you want */
}

.card-title-container[b-jhkdrrs0qp] {
    padding: 30px 25px;
    margin: 20px;
    border-radius: 15px;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: block;
    text-align: center;
}

    .card-title-container > p:first-child[b-jhkdrrs0qp] {
        text-align: center;
        margin-bottom: 15px;
    }

    .card-title-container > p:last-child[b-jhkdrrs0qp] {
        text-align: center;
        margin-top: 20px;
    }

.content-area[b-jhkdrrs0qp] {
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.icon-warning[b-jhkdrrs0qp] {
    font-size: 100px;
    color: #EB0A1E;
    text-align: center;
    margin-bottom: 20px;
}

.icon-success[b-jhkdrrs0qp] {
    font-size: 100px;
    color: #4AD991;
    text-align: center;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .card-title-container[b-jhkdrrs0qp] {
        margin: 10px;
        padding: 20px;
    }

    .content-area[b-jhkdrrs0qp] {
        padding: 15px;
    }
}
/* /Components/Pages/EmailNotification/RejectedBooking.razor.rz.scp.css */
body[b-tsd5d7vxbp] {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
}

.main-text[b-tsd5d7vxbp] {
    font-size: 26px;
    font-weight: bold;
    margin: 10px;
}

.sub-main-text[b-tsd5d7vxbp] {
    font-size: 26px;
    font-weight: 400;
    margin: 10px;
}

.container[b-tsd5d7vxbp] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* or the height you want */
}

.card-title-container[b-tsd5d7vxbp] {
    padding: 30px 25px;
    margin: 20px;
    border-radius: 15px;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: block;
    text-align: center;
}

    .card-title-container > p:first-child[b-tsd5d7vxbp] {
        text-align: center;
        margin-bottom: 15px;
    }

    .card-title-container > p:last-child[b-tsd5d7vxbp] {
        text-align: center;
        margin-top: 20px;
    }

.content-area[b-tsd5d7vxbp] {
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.icon-warning[b-tsd5d7vxbp] {
    font-size: 100px;
    color: #EB0A1E;
    text-align: center;
    margin-bottom: 20px;
}

.icon-success[b-tsd5d7vxbp] {
    font-size: 100px;
    color: #4AD991;
    text-align: center;
    margin-bottom: 20px;
}

.modal-overlay[b-tsd5d7vxbp] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 15px;
    box-sizing: border-box;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.modal-container[b-tsd5d7vxbp] {
    background-color: #FFFFFF;
    border-radius: 15px;
    width: 95%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    box-sizing: border-box;
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-container-cancel-booking[b-tsd5d7vxbp] {
    background-color: #FFFFFF;
    border-radius: 15px;
    width: 95%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    box-sizing: border-box;
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-content-area[b-tsd5d7vxbp] {
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.modal-header[b-tsd5d7vxbp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #edf2f7;
    position: relative;
}

.modal-title-text[b-tsd5d7vxbp] {
    font-size: 26px;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}
/* Input & Textarea Styles */
input[b-tsd5d7vxbp], textarea[b-tsd5d7vxbp] {
    width: 100%;
    max-width: auto;
    padding: 10px 20px;
    border: 1px solid #DFEAF2;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: border 0.3s ease-in-out, height 0.2s ease-in-out;
    color: #101010;
}

/* Textarea Specific Styles */
textarea[b-tsd5d7vxbp] {
    height: 123px;
    min-height: 123px;
    max-height: 300px;
    resize: vertical;
    border-radius: 20px;
    overflow-y: auto;
    display: block;
    transition: border 0.3s ease-in-out;
}

    input[b-tsd5d7vxbp]::placeholder, textarea[b-tsd5d7vxbp]::placeholder {
        color: #718EBF;
        transition: color 0.3s ease-in-out;
    }

    input:focus[b-tsd5d7vxbp], textarea:focus[b-tsd5d7vxbp] {
        border-color: #FE6A6E;
    }

        input:focus[b-tsd5d7vxbp]::placeholder, textarea:focus[b-tsd5d7vxbp]::placeholder {
            color: #718EBF;
        }

    /* Disabled Input & Textarea Styles */
    input:disabled[b-tsd5d7vxbp], textarea:disabled[b-tsd5d7vxbp] {
        background-color: #EBF2FA !important;
        color: #A0A0A0;
        border: 1px solid #EBF2FA;
        cursor: not-allowed;
        opacity: 0.6;
        pointer-events: none;
        user-select: none;
    }

.textarea-container[b-tsd5d7vxbp] {
    position: relative;
    width: 100%;
}

#charCounter[b-tsd5d7vxbp] {
    position: absolute;
    bottom: -20px;
    right: 5px;
    font-size: 12px;
    font-weight: 400;
    color: #89939E;
}

/* Error Styling */
.input-error[b-tsd5d7vxbp] {
    background-color: #FFE3E3;
    border: 1px solid #FFE3E3;
}

.status-message[b-tsd5d7vxbp] {
    font-size: 12px;
    font-weight: 400;
    position: absolute;
    bottom: -20px;
    left: 5px;
}

/* Wrapper for inputs */
.input-wrapper[b-tsd5d7vxbp] {
    position: relative;
    width: 100%;
}

.vetical-text[b-tsd5d7vxbp] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.horizontal-text[b-tsd5d7vxbp] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-actions-group[b-tsd5d7vxbp] {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    flex-shrink: 0;
    padding-top: 15px;
    border-top: 1px solid #edf2f7;
}

.modal-skip-button[b-tsd5d7vxbp] {
    display: none;
}

.modal-cancel-button[b-tsd5d7vxbp] {
    background-color: #E4ECF7;
    color: #505780;
    border: 1px solid #E4ECF7;
    cursor: pointer;
    font-weight: 600;
    border-radius: 100px;
    padding: 12px 20px;
    font-size: 12px;
    height: 36px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

    .modal-cancel-button:hover[b-tsd5d7vxbp] {
        background-color: #d8dde3;
        transform: translateY(-2px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .modal-cancel-button:focus[b-tsd5d7vxbp] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(160, 174, 192, 0.6);
    }

.modal-submit-button[b-tsd5d7vxbp] {
    background-color: #EB0A1A;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 100px;
    padding: 12px 20px;
    font-size: 12px;
    height: 36px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

    .modal-submit-button:not(:disabled):hover[b-tsd5d7vxbp] {
        background-color: #A90512;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(135, 135, 135, 0.6);
    }

    .modal-submit-button:not(:disabled):focus[b-tsd5d7vxbp] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(135, 135, 135, 0.6);
    }

    .modal-submit-button:disabled[b-tsd5d7vxbp] {
        background-color: #cccccc;
        color: #666666;
        box-shadow: none;
        cursor: not-allowed;
        pointer-events: none;
        transform: none;
        border: none;
    }


@media (max-width: 600px) {
    .card-title-container[b-tsd5d7vxbp] {
        margin: 10px;
        padding: 20px;
    }

    .content-area[b-tsd5d7vxbp] {
        padding: 15px;
    }

    .modal-container[b-tsd5d7vxbp] {
        width: 95%;
        max-height: calc(100vh - 20px);
        max-height: calc(100dvh - 20px);
    }

    .modal-container-cancel-booking[b-tsd5d7vxbp] {
        width: 95%;
        max-height: calc(100vh - 20px);
        max-height: calc(100dvh - 20px);
    }

    .modal-header[b-tsd5d7vxbp] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }

    .modal-title-text[b-tsd5d7vxbp] {
        font-size: 20px;
    }

    .close-modal-icon[b-tsd5d7vxbp] {
        position: absolute;
        top: 5px;
        right: 5px;
        font-size: 18px;
    }

    .modal-content-area[b-tsd5d7vxbp] {
        padding: 15px;
    }

    .modal-actions-group[b-tsd5d7vxbp] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        margin-top: 20px;
        padding-top: 10px;
    }

    .modal-skip-button[b-tsd5d7vxbp],
    .modal-cancel-button[b-tsd5d7vxbp],
    .modal-submit-button[b-tsd5d7vxbp] {
        padding: 10px 15px;
        font-size: 15px;
    }
}

@media (max-width: 420px) {

    .modal-container[b-tsd5d7vxbp] {
        padding: 10px;
    }
}

/* /Components/Pages/Login/Login.razor.rz.scp.css */
/* Add this to remove focus outline from elements */
.login-page *:focus[b-92n1gi4xrq] {
    outline: none !important;
}

/* Optional: To retain accessibility, you can use :focus-visible */
.login-page *:focus-visible[b-92n1gi4xrq] {
    outline: none !important;
}

.login-page[b-92n1gi4xrq] {
    /*background-image: url('/images/rice_bg.jpg');*/
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-container[b-92n1gi4xrq] {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.logo-container[b-92n1gi4xrq] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.logo[b-92n1gi4xrq] {
    width: 80px;
    height: auto;
}

h1[b-92n1gi4xrq] {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
    border: none;
}

.single-sign-on-container p[b-92n1gi4xrq] {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}


footer[b-92n1gi4xrq] {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

    footer p[b-92n1gi4xrq], footer a[b-92n1gi4xrq] {
        margin: 0.5rem 0;
        color: #888;
    }

    footer a[b-92n1gi4xrq] {
        text-decoration: none;
    }

        footer a:hover[b-92n1gi4xrq] {
            text-decoration: underline;
        }

/* Button Styles */

button[b-92n1gi4xrq] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Sizes */
.large-button[b-92n1gi4xrq] {
    border-radius: 50px;
    padding: 16px 24px;
    font-size: 14px;
    height: 48px;
}

.normal-button[b-92n1gi4xrq] {
    border-radius: 100px;
    padding: 12px 20px;
    font-size: 12px;
    height: 36px;
}

.small-button[b-92n1gi4xrq] {
    border-radius: 100px;
    padding: 8px 12px;
    font-size: 10px;
    height: 26px;
}

/* Default State */
.default[b-92n1gi4xrq] {
    background-color: #EB0A1A;
    color: #FFFFFF;
}

    .default:hover[b-92n1gi4xrq] {
        background-color: #A90512;
    }
/* /Components/Pages/TripHistory/TripHistory.razor.rz.scp.css */
body[b-ipuwd5gd9p] {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
}

.card-title-container[b-ipuwd5gd9p] {
    padding: 30px 25px;
    margin: 20px;
    border-radius: 15px;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: block;
    text-align: left;
}

    .card-title-container > p:first-child[b-ipuwd5gd9p] {
        text-align: center;
        margin-bottom: 15px;
    }

    .card-title-container > p:last-child[b-ipuwd5gd9p] {
        text-align: center;
        margin-top: 20px;
    }

.section-title[b-ipuwd5gd9p] {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    display: block;
    text-align: left;
}

.body_section[b-ipuwd5gd9p] {
    display: flex;
    flex-direction: column;
    padding: 20px 25px;
    margin-bottom: 20px;
    gap: 25px;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
}

.content-wrapper[b-ipuwd5gd9p] {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.trip-accordion-wrapper[b-ipuwd5gd9p] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.trip-accordion-item[b-ipuwd5gd9p] {
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

    .trip-accordion-item:hover[b-ipuwd5gd9p] {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

.accordion-header[b-ipuwd5gd9p] {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background-color: #ffffff;
    border-bottom: 1px solid #edf2f7;
    transition: background-color 0.2s ease;
}

    .accordion-header.active[b-ipuwd5gd9p] {
        background-color: #f7fafc;
    }

    .accordion-header:hover[b-ipuwd5gd9p] {
        background-color: #f7fafc;
    }

.accordion-title-group[b-ipuwd5gd9p] {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: flex-start;
}

.accordion-title[b-ipuwd5gd9p] {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.accordion-date[b-ipuwd5gd9p] {
    color: #718096;
    margin-top: 4px;
    white-space: nowrap;
}

    .accordion-date .bi[b-ipuwd5gd9p] {
        color: black;
    }

.accordion-status-and-icon[b-ipuwd5gd9p] {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    white-space: nowrap;
}


.accordion-mini-rating[b-ipuwd5gd9p] {
    display: flex;
    align-items: center;
    gap: 3px;
}

.mini-star[b-ipuwd5gd9p] {
    font-size: 14px;
}

.status-text[b-ipuwd5gd9p] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    font-size: 0.9em;
    transition: background-color 2.4s ease, color 2.4s ease, border-color .4s ease;
}

    .status-text.button[b-ipuwd5gd9p] {
        background-color: #e6ffe6;
        color: #28a745;
    }

    .status-text.completed[b-ipuwd5gd9p] {
        background-color: #e6ffe6;
        color: #28a745;
        border: 1px solid #28a745;
    }

    .status-text.pending[b-ipuwd5gd9p] {
        background-color: #fff8e6;
        color: #ffc107;
        border: 1px solid #ffc107;
    }

    .status-text.ongoing[b-ipuwd5gd9p] {
        background-color: #e0f2fe;
        color: #2196f3;
        border: 1px solid #2196f3;
    }

    .status-text.upcoming[b-ipuwd5gd9p] {
        background-color: #e9ecef;
        color: #6c757d;
        border: 1px solid #6c757d;
    }

    .status-text.did-not-board[b-ipuwd5gd9p] {
        background-color: #ffe6e6;
        color: #dc3545;
        border: 1px solid #dc3545;
    }

    .status-text.clickable-pending[b-ipuwd5gd9p] {
        cursor: pointer;
        transition: background-color 0.2s ease, border-color 0.2s ease;
    }

        .status-text.clickable-pending:hover[b-ipuwd5gd9p] {
            background-color: #ffe08a;
            border-color: #e0a800;
        }

    .status-text.status-for-pickup[b-ipuwd5gd9p] {
        color: #6c757d;
        background-color: #e9ecef;
        border: 1px solid #6c757d;
    }

    .status-text.status-for-dropoff[b-ipuwd5gd9p] {
        color: #ffc107;
        background-color: #fff3cd;
        border: 1px solid #ffc107;
    }

@keyframes status-pulse-b-ipuwd5gd9p {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.status-text.animate-pulse[b-ipuwd5gd9p] {
    animation: status-pulse-b-ipuwd5gd9p 0.6s ease-out;
}

.accordion-icon2[b-ipuwd5gd9p] {
    font-size: 18px;
    color: white;
    transition: transform 0.3s ease;
}

.accordion-icon[b-ipuwd5gd9p] {
    font-size: 18px;
    color: red;
    transition: transform 0.3s ease;
}

    .accordion-icon.rotate[b-ipuwd5gd9p] {
        transform: rotate(180deg);
    }

.accordion-content[b-ipuwd5gd9p] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
}

    .accordion-content.expanded[b-ipuwd5gd9p] {
        max-height: 500px;
        padding: 20px 25px;
    }

.trip-route[b-ipuwd5gd9p] {
    display: flex;
    align-items: center;
    font-size: 1.2em;
    margin-bottom: 5px;
    color: #2d3748;
    flex-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.route-icon[b-ipuwd5gd9p] {
    font-size: 1.1em;
    margin-right: 5px;
    color: red;
    flex-shrink: 0;
    line-height: 1;
}

.trip-route .route-icon + .bi-arrow-right + .route-icon[b-ipuwd5gd9p] {
    margin-left: 8px;
}

.route-arrow[b-ipuwd5gd9p] {
    font-size: 1em;
    margin: 0 8px;
    color: red;
    flex-shrink: 0;
}

.trip-details-line[b-ipuwd5gd9p] {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: #6c757d;
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .trip-details-line p[b-ipuwd5gd9p] {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 0.9em;
        margin: 0;
    }

    .trip-details-line .bi-person-fill[b-ipuwd5gd9p],
    .trip-details-line .bi-car-front-fill[b-ipuwd5gd9p],
    .trip-details-line .bi-calendar-event[b-ipuwd5gd9p] {
        color: dimgray;
    }

.driver-name[b-ipuwd5gd9p] {
    font-weight: 500;
}

.rated-section[b-ipuwd5gd9p] {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.rated-heading[b-ipuwd5gd9p] {
    font-size: 16px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 10px;
}

.overall-rating-display[b-ipuwd5gd9p] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.overall-rating-label[b-ipuwd5gd9p] {
    color: #4a5568;
    font-size: 16px;
    font-weight: 500;
}
.bi2[b-ipuwd5gd9p] {
    font-family: "bootstrap-icons" !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: white;
}

.bi[b-ipuwd5gd9p] {
    font-family: "bootstrap-icons" !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: red;
}

.star-yellow[b-ipuwd5gd9p] {
    color: #ffc107;
}

.star-gray[b-ipuwd5gd9p] {
    color: #ccc;
}

.star-blue[b-ipuwd5gd9p] {
    color: #4299e1;
}

.overall-rating-value[b-ipuwd5gd9p] {
    font-size: 14px;
    color: #718096;
    font-weight: 500;
}

.individual-ratings-summary[b-ipuwd5gd9p] {
    font-size: 13px;
    color: #a0aec0;
    margin-top: 8px;
    line-height: 1.4;
}

.trip-comment-display[b-ipuwd5gd9p] {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
}

.comment-label[b-ipuwd5gd9p] {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 5px;
    display: block;
}

.comment-text[b-ipuwd5gd9p] {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
    background-color: #f7fafc;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #edf2f7;
}

.rate-trip-button[b-ipuwd5gd9p] {
    display: none;
}

.no-trips-message[b-ipuwd5gd9p] {
    color: #718096;
    font-size: 18px;
    margin-top: 40px;
    text-align: center;
    width: 100%;
}

.modal-overlay[b-ipuwd5gd9p] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 15px;
    box-sizing: border-box;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.modal-container[b-ipuwd5gd9p] {
    background-color: #FFFFFF;
    border-radius: 15px;
    max-width: 500px;
    width: 95%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    box-sizing: border-box;
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-content-area[b-ipuwd5gd9p] {
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.modal-header[b-ipuwd5gd9p] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #edf2f7;
    position: relative;
}

.modal-title-text[b-ipuwd5gd9p] {
    font-size: 26px;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.close-modal-icon[b-ipuwd5gd9p] {
    cursor: pointer;
    font-size: 24px;
    color: red;
    transition: color 0.2s ease;
    position: static;
    top: auto;
    right: auto;
}

    .close-modal-icon:hover[b-ipuwd5gd9p] {
        color: #2d3748;
    }

.modal-rating-section[b-ipuwd5gd9p] {
    margin-bottom: 25px;
    text-align: center;
}

.modal-rating-label[b-ipuwd5gd9p] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

    .modal-rating-label .bi[b-ipuwd5gd9p] {
        margin-right: 10px;
        font-size: 24px;
        vertical-align: middle;
        line-height: 1;
        color: red;
    }

    .modal-rating-label.required-field[b-ipuwd5gd9p]::after {
        content: ' *';
        color: #dc3545;
        margin-left: 4px;
    }

.star-input-group[b-ipuwd5gd9p] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.star-input[b-ipuwd5gd9p] {
    cursor: pointer;
    transition: transform 100ms ease-in-out, color 0.2s ease;
    color: red;
}

    .star-input:hover[b-ipuwd5gd9p] {
        transform: scale(1.15);
        color: #f6ad55;
    }

    .star-input.selected[b-ipuwd5gd9p] {
        color: #f6ad55;
        transform: scale(1.05);
        animation: star-selected-pulse-b-ipuwd5gd9p 0.3s ease-out;
    }

@keyframes star-selected-pulse-b-ipuwd5gd9p {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.modal-overall-rating-display[b-ipuwd5gd9p] {
    margin-top: 30px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #e2e8f0;
    border-radius: 10px;
    border: 1px solid #cbd5e0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.star-display-group[b-ipuwd5gd9p] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.overall-star-display[b-ipuwd5gd9p] {
    font-size: 32px;
    color: red;
}

.overall-rating-value-large[b-ipuwd5gd9p] {
    margin-left: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
}

.comment-textarea[b-ipuwd5gd9p] {
    width: 100%;
    min-height: 100px;
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #4a5568;
    resize: vertical;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .comment-textarea:focus[b-ipuwd5gd9p] {
        outline: none;
        border-color: #4299e1;
        box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.4);
    }

    .comment-textarea:required:invalid[b-ipuwd5gd9p] {
        border-color: #dc3545;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    }

.validation-message[b-ipuwd5gd9p] {
    color: #dc3545;
    font-size: 0.85em;
    margin-top: 5px;
}

.modal-actions-group[b-ipuwd5gd9p] {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    flex-shrink: 0;
    padding-top: 15px;
    border-top: 1px solid #edf2f7;
}

.modal-skip-button[b-ipuwd5gd9p] {
    display: none;
}

.modal-cancel-button[b-ipuwd5gd9p] {
    padding: 12px 25px;
    border: 1px solid #cbd5e0;
    color: #4a5568;
    border-radius: 8px;
    background-color: transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

    .modal-cancel-button:hover[b-ipuwd5gd9p] {
        background-color: #edf2f7;
        color: #2d3748;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .modal-cancel-button:focus[b-ipuwd5gd9p] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(160, 174, 192, 0.6);
    }

.modal-submit-button[b-ipuwd5gd9p] {
    padding: 12px 25px;
    background-color: #48bb78;
    color: #FFFFFF;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

    .modal-submit-button:not(:disabled):hover[b-ipuwd5gd9p] {
        background-color: #38a169;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(72, 187, 120, 0.4);
    }

    .modal-submit-button:not(:disabled):focus[b-ipuwd5gd9p] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.6);
    }

    .modal-submit-button:disabled[b-ipuwd5gd9p] {
        background-color: #cccccc;
        color: #666666;
        box-shadow: none;
        cursor: not-allowed;
        pointer-events: none;
        transform: none;
        border: none;
    }

.filter-and-title-group[b-ipuwd5gd9p] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-dropdown-container[b-ipuwd5gd9p] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-label[b-ipuwd5gd9p] {
    font-size: 15px;
    font-weight: 600;
    color: #4a5568;
    white-space: nowrap;
}

.filter-dropdown[b-ipuwd5gd9p] {
    padding: 10px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #2d3748;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22red%22%20d%3D%22M287%2069.9H5.4c-7.2%200-11.4%208.5-7%2014.2l140.7%20140.8c4.6%204.6%2012.3%204.6%2016.9%200L294%2084.1c4.4-5.7.2-14.2-7-14.2z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .filter-dropdown:hover[b-ipuwd5gd9p] {
        border-color: #a0aec0;
    }

    .filter-dropdown:focus[b-ipuwd5gd9p] {
        outline: none;
        border-color: #4299e1;
        box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.4);
    }

.pagination-controls[b-ipuwd5gd9p] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 8px;
}

.pagination-button[b-ipuwd5gd9p] {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s, border-color 0.2s;
    min-width: 40px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .pagination-button:hover:not(:disabled)[b-ipuwd5gd9p] {
        background-color: #e0e0e0;
        border-color: #bbb;
    }

    .pagination-button:disabled[b-ipuwd5gd9p] {
        cursor: not-allowed;
        opacity: 0.6;
        background-color: #fafafa;
        color: #999;
    }

    .pagination-button.active-page[b-ipuwd5gd9p] {
        background-color: #007bff;
        color: white;
        border-color: #007bff;
        font-weight: bold;
    }

        .pagination-button.active-page:hover[b-ipuwd5gd9p] {
            background-color: #0056b3;
            border-color: #0056b3;
        }

.mini-dashboard[b-ipuwd5gd9p] {
    background-color: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
}

.dashboard-title[b-ipuwd5gd9p] {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.dashboard-stats-grid[b-ipuwd5gd9p] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-content: center;
}

.dashboard-stat-item[b-ipuwd5gd9p] {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border: 1px solid #ebf4ff;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease-in-out;
}

    .dashboard-stat-item:hover[b-ipuwd5gd9p] {
        transform: translateY(-3px);
    }

.dashboard-icon[b-ipuwd5gd9p] {
    font-size: 36px;
    color: red;
    margin-bottom: 10px;
}

.stat-content[b-ipuwd5gd9p] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value[b-ipuwd5gd9p] {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 5px;
}

.stat-label[b-ipuwd5gd9p] {
    font-size: 14px;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.snackbar[b-ipuwd5gd9p] {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    position: fixed;
    z-index: 1050;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: 17px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: visibility 0.5s, opacity 0.5s ease-in-out;
}

    .snackbar.show[b-ipuwd5gd9p] {
        visibility: visible;
        opacity: 1;
    }

.snackbar-success[b-ipuwd5gd9p] {
    background-color: #4CAF50;
}

.snackbar-error[b-ipuwd5gd9p] {
    background-color: #f44336;
}
.snackbar-info[b-ipuwd5gd9p] {
    background-color: #2196F3;
}

.accordion-status-and-icon .upcoming-status-group[b-ipuwd5gd9p] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    min-width: 120px;
}

.accordion-status-and-icon .status-text.upcoming[b-ipuwd5gd9p] {
    width: auto;
    text-align: right;
    padding: 2px 8px;
    font-weight: bold;
    color: #6c757d;
    border: 1px solid #6c757d;
    background-color: #e9ecef;
}

.accordion-status-and-icon .upcoming-time-under-status[b-ipuwd5gd9p] {
    font-size: 0.8em;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

    .accordion-status-and-icon .upcoming-time-under-status .bi[b-ipuwd5gd9p] {
        font-size: 0.9em;
        color: black;
    }

@media (max-width: 767px) {
    .dashboard-stats-grid[b-ipuwd5gd9p] {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

    .dashboard-stat-item[b-ipuwd5gd9p] {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 15px;
        min-height: 120px;
    }

    .dashboard-icon[b-ipuwd5gd9p] {
        font-size: 30px;
        margin-bottom: 2px;
        color: red;
    }

    .stat-content[b-ipuwd5gd9p] {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .stat-value[b-ipuwd5gd9p] {
        font-size: 20px;
        margin-bottom: 0;
    }

    .stat-label[b-ipuwd5gd9p] {
        font-size: 11px;
        line-height: 1.2;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .card-title-container[b-ipuwd5gd9p] {
        padding: 20px;
    }

    .mini-dashboard[b-ipuwd5gd9p] {
        padding: 15px;
    }
}

@media (max-width: 600px) {
    .card-title-container[b-ipuwd5gd9p] {
        padding: 20px;
    }

    .filter-and-title-group[b-ipuwd5gd9p] {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .filter-dropdown[b-ipuwd5gd9p] {
        padding: 8px 12px;
        font-size: 14px;
        background-position: right 10px center;
        background-size: 10px;
    }

    .accordion-header[b-ipuwd5gd9p] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 20px;
    }

    .accordion-title-group[b-ipuwd5gd9p] {
        width: 100%;
        margin-right: 0;
    }

    .accordion-status-and-icon[b-ipuwd5gd9p] {
        width: 100%;
        justify-content: flex-end;
        margin-top: 10px;
    }

    .modal-container[b-ipuwd5gd9p] {
        width: 95%;
        max-height: calc(100vh - 20px);
        max-height: calc(100dvh - 20px);
    }

    .modal-header[b-ipuwd5gd9p] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }

    .modal-title-text[b-ipuwd5gd9p] {
        font-size: 20px;
    }

    .close-modal-icon[b-ipuwd5gd9p] {
        position: absolute;
        top: 5px;
        right: 5px;
        font-size: 18px;
        color: red;
    }

    .modal-content-area[b-ipuwd5gd9p] {
        padding: 15px;
    }

    .modal-rating-section[b-ipuwd5gd9p] {
        margin-bottom: 15px;
    }

    .modal-rating-label[b-ipuwd5gd9p] {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .star-input-group[b-ipuwd5gd9p] {
        gap: 8px;
    }

        .star-input-group .star-input[b-ipuwd5gd9p] {
            font-size: 28px;
        }

    .modal-overall-rating-display[b-ipuwd5gd9p] {
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 15px;
    }

    .overall-star-display[b-ipuwd5gd9p] {
        font-size: 26px;
    }

    .overall-rating-value-large[b-ipuwd5gd9p] {
        font-size: 20px;
    }

    .comment-textarea[b-ipuwd5gd9p] {
        min-height: 80px;
        padding: 10px 12px;
        font-size: 14px;
    }

    .modal-actions-group[b-ipuwd5gd9p] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        margin-top: 20px;
        padding-top: 10px;
    }

    .modal-skip-button[b-ipuwd5gd9p],
    .modal-cancel-button[b-ipuwd5gd9p],
    .modal-submit-button[b-ipuwd5gd9p] {
        padding: 10px 15px;
        font-size: 15px;
    }

    .accordion-content.expanded .rated-heading[b-ipuwd5gd9p] {
        font-size: 15px;
    }

    .accordion-content.expanded .overall-rating-label[b-ipuwd5gd9p] {
        font-size: 14px;
    }

    .accordion-content.expanded .overall-star-display[b-ipuwd5gd9p] {
        font-size: 26px;
    }

    .accordion-content.expanded .individual-ratings-summary[b-ipuwd5gd9p] {
        font-size: 12px;
    }

    .accordion-content.expanded .comment-label[b-ipuwd5gd9p] {
        font-size: 13px;
    }

    .accordion-content.expanded .comment-text[b-ipuwd5gd9p] {
        font-size: 13px;
    }

    .accordion-content.expanded .unrated-message[b-ipuwd5gd9p] {
        font-size: 14px;
    }

    .accordion-content.expanded[b-ipuwd5gd9p] {
        padding: 15px 20px;
    }

    .trip-route[b-ipuwd5gd9p] {
        font-size: 0.95em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .route-icon[b-ipuwd5gd9p] {
        font-size: 0.8em;
        vertical-align: middle;
        margin-right: 2px;
        color: red;
    }

    .trip-route .route-icon + .bi-arrow-right + .route-icon[b-ipuwd5gd9p] {
        margin-left: 2px;
    }

    .route-arrow[b-ipuwd5gd9p] {
        font-size: 0.7em;
        vertical-align: middle;
        margin: 0 2px;
        color: red;
    }

    .trip-details-line[b-ipuwd5gd9p] {
        font-size: 0.9em;
        gap: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .accordion-date[b-ipuwd5gd9p] {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .pagination-button[b-ipuwd5gd9p] {
        padding: 6px 10px;
        font-size: 12px;
        min-width: unset;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .trip-route[b-ipuwd5gd9p] {
        font-size: 0.85em;
    }

    .route-icon[b-ipuwd5gd9p] {
        font-size: 0.75em;
    }

    .route-arrow[b-ipuwd5gd9p] {
        font-size: 0.65em;
    }

    .trip-details-line[b-ipuwd5gd9p] {
        font-size: 0.8em;
    }

    .accordion-date[b-ipuwd5gd9p] {
        font-size: 0.75em;
    }

    /* Smaller status text on mobile */
    .status-text[b-ipuwd5gd9p] {
        font-size: 0.75em; /* Smaller font size for status text */
        padding: 2px 6px; /* Reduced padding */
    }

    .accordion-status-and-icon .upcoming-time-under-status[b-ipuwd5gd9p] {
        font-size: 0.7em; /* Smaller font for upcoming time */
        gap: 2px; /* Reduced gap */
    }
}

@media (max-width: 420px) {
    .dashboard-stats-grid[b-ipuwd5gd9p] {
        gap: 8px;
        padding: 0 5px;
    }

    .dashboard-stat-item[b-ipuwd5gd9p] {
        min-height: 100px;
        padding: 10px;
    }

    .dashboard-icon[b-ipuwd5gd9p] {
        font-size: 26px;
        margin-bottom: 1px;
        color: red;
    }

    .stat-value[b-ipuwd5gd9p] {
        font-size: 18px;
    }

    .stat-label[b-ipuwd5gd9p] {
        font-size: 10px;
    }

    .modal-container[b-ipuwd5gd9p] {
        padding: 10px;
    }

    .modal-content-area[b-ipuwd5gd9p] {
        padding: 15px;
    }

    .modal-title-text[b-ipuwd5gd9p] {
        font-size: 20px;
    }

    .trip-route[b-ipuwd5gd9p] {
        font-size: 0.7em;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        line-height: 1.3;
    }

    .route-icon[b-ipuwd5gd9p] {
        font-size: 0.65em;
    }

    .route-arrow[b-ipuwd5gd9p] {
        font-size: 0.55em;
    }

    .trip-details-line[b-ipuwd5gd9p] {
        font-size: 0.7em;
    }
}


.mud-snackbar[b-ipuwd5gd9p] {
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

/* Info snackbar */
.mud-snackbar-info[b-ipuwd5gd9p] {
    background-color: #2196f3 !important; /* default blue */
}

/* Success snackbar */
.mud-snackbar-success[b-ipuwd5gd9p] {
    background-color: #4caf50 !important;
}

/* Warning snackbar */
.mud-snackbar-warning[b-ipuwd5gd9p] {
    background-color: #ff9800 !important;
}

/* Error snackbar */
.mud-snackbar-error[b-ipuwd5gd9p] {
    background-color: #f44336 !important;
}
