/* _content/KarootPlusWeb/Components/Controls/ResponsiveTable.razor.rz.scp.css */
/* --- General Styles --- */
.list-container[b-2lnuaestf6] {
    width: 100%;
}

.from-header[b-2lnuaestf6] {
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
}

.pickup-address[b-2lnuaestf6] {
    font-weight: normal;
}

.sort-button[b-2lnuaestf6] {
    width: 32px;
    height: 32px;
    cursor: pointer;
}

/* --- Desktop View Header --- */
.desktop-header[b-2lnuaestf6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* --- Divider --- */
.from-divider[b-2lnuaestf6] {
    margin: 10px 0;
    height: 1px;
    background-color: #a7a7a7;
    border: none;
}

/* --- Card List --- */
.card-list[b-2lnuaestf6] {
    height: 70vh;
    overflow-y: auto;
}

.card[b-2lnuaestf6] {
    padding-right: 5px !important;
    display: flex;
    flex-direction: column;
    padding: 15px 10px !important;
    background-color: white;
    border: none;
}

/* --- State Text Color --- */
.state[b-2lnuaestf6] {
    color: #ffa500;
    font-weight: bold;
    margin-left: auto;
}

/* --- Divider Between Cards --- */
.divider[b-2lnuaestf6] {
    border: none;
    height: 1px;
    background-color: black;
    margin: 0;
}

/* --- Loading Indicator --- */
.loading-indicator[b-2lnuaestf6] {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: #888;
}

/* --- No Data Message --- */
.no-data-message[b-2lnuaestf6] {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #888;
    padding: 20px;
}

/* --- Mobile View Header (Title + Sort Button) --- */
.mobile-header[b-2lnuaestf6] {
    padding-top: 20px;
    padding-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.trips-title[b-2lnuaestf6] {
    font-size: 25px;
    font-weight: 500;
    font-family: AeonikPro;
    color: #000;
}

/* Sort Modal CSS */



/* Header */
[b-2lnuaestf6] .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

[b-2lnuaestf6] .filter-title {
    font-family: AeonikPro;
    font-size: 16px;
    font-weight: 500;
    color: #4a4a4a;
}

[b-2lnuaestf6] .clear-button {
    font-family: AeonikPro;
    font-size: 14px;
    font-weight: 500;
    color: #4a27ef;
    background: none;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 5px 10px;
    cursor: pointer;
}

    .clear-button:hover[b-2lnuaestf6] {
        background-color: #f5f5f5;
    }

/* Sections */
[b-2lnuaestf6] .filter-section {
    margin-bottom: 16px;
}

[b-2lnuaestf6] .section-title {
    font-family: AeonikPro;
    font-size: 14px;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 8px;
}

/* Options */
 .filter-option[b-2lnuaestf6] {
    display: flex;
    align-items: center;
    padding: 8px 0;
    cursor: pointer;
}

.option-indicator[b-2lnuaestf6] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid #ccc;
}

.option-label[b-2lnuaestf6] {
    font-family: AeonikPro;
    font-size: 14px;
    font-weight: 400;
    color: #4a4a4a;
}

/* _content/KarootPlusWeb/Components/Layout/EmptyLayout.razor.rz.scp.css */
.page[b-mbdl73d55s] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-mbdl73d55s] {
    flex: 1;
}

.sidebar[b-mbdl73d55s] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-mbdl73d55s] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-mbdl73d55s]  a, .top-row[b-mbdl73d55s]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-mbdl73d55s]  a:hover, .top-row[b-mbdl73d55s]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-mbdl73d55s]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-mbdl73d55s] {
        justify-content: space-between;
    }

    .top-row[b-mbdl73d55s]  a, .top-row[b-mbdl73d55s]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-mbdl73d55s] {
        flex-direction: row;
    }

    .sidebar[b-mbdl73d55s] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-mbdl73d55s] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-mbdl73d55s]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-mbdl73d55s], article[b-mbdl73d55s] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-mbdl73d55s] {
    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-mbdl73d55s] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/KarootPlusWeb/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-cprwahfc3a] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-cprwahfc3a] {
    flex: 1;
}

.sidebar[b-cprwahfc3a] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-cprwahfc3a] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-cprwahfc3a]  a, .top-row[b-cprwahfc3a]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-cprwahfc3a]  a:hover, .top-row[b-cprwahfc3a]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-cprwahfc3a]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-cprwahfc3a] {
        justify-content: space-between;
    }

    .top-row[b-cprwahfc3a]  a, .top-row[b-cprwahfc3a]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-cprwahfc3a] {
        flex-direction: row;
    }

    .sidebar[b-cprwahfc3a] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-cprwahfc3a] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-cprwahfc3a]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-cprwahfc3a], article[b-cprwahfc3a] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-cprwahfc3a] {
    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-cprwahfc3a] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/*Alert styles*/
.global-message[b-cprwahfc3a] {
    margin: 1rem 2rem;
    padding: 1rem;
    border-radius: 6px;
    font-weight: 500;
    position: relative;
    z-index: 1000;
}

.alert-content[b-cprwahfc3a] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-close[b-cprwahfc3a] {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    margin-left: 1rem;
    color: inherit;
}
/* _content/KarootPlusWeb/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-lolspvhadv] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-lolspvhadv] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-lolspvhadv] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-lolspvhadv] {
    font-size: 1.1rem;
}

.bi[b-lolspvhadv] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-lolspvhadv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-lolspvhadv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-lolspvhadv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-lolspvhadv] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-lolspvhadv] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-lolspvhadv] {
        padding-bottom: 1rem;
    }

    .nav-item[b-lolspvhadv]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-lolspvhadv]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-lolspvhadv]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-lolspvhadv] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-lolspvhadv] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-lolspvhadv] {
        display: none;
    }

    .nav-scrollable[b-lolspvhadv] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/KarootPlusWeb/Components/Pages/Home.razor.rz.scp.css */
[b-igujgbradq] .row-date-state {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.card-details .row[b-igujgbradq] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    align-items: center;
}

.state[b-igujgbradq] {
    font-family: AeonikPro;
    font-size: 16px;
    font-weight: 500;
    color: #ea8801;
    margin-left: auto;
}

.label[b-igujgbradq] {
    font-family: AeonikPro;
    font-size: 16px;
    font-weight: 500;
    color: #4a4a4a;
    flex: 0 0 12%;
    padding-right: 0;
}

.value-date[b-igujgbradq] {
    height: 100%;
    flex: 1;
    text-align: left;
    padding: 0;
    margin: 0;
    line-height: 1.25;
    font-family: AeonikPro;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.value[b-igujgbradq] {
    padding-left:6% !important;
    height: 100%;
    flex: 1;
    text-align: left;
    padding: 0;
    margin: 0;
    line-height: 1.25;
    font-family: AeonikPro;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.cancel-button[b-igujgbradq] {
    font-family: AeonikPro;
    font-size: 22px !important;
    font-weight: 500;
    width: 100%;
    margin-top: 15px;
    padding: 12px 0;
    color: #4a27ef;
    border-radius: 24px;
    border: solid 1px #ccc;
    background-color: transparent;
    cursor: pointer;
    line-height: 0.91;
    text-align: center;
}

    .cancel-button:hover[b-igujgbradq] {
        background-color: rgba(74, 39, 239, 0.1);
    }
/* _content/KarootPlusWeb/Components/Pages/Login.razor.rz.scp.css */
/* Apply global font */
*[b-idazh1idf7] {
    font-family: 'AeonikPro Medium', sans-serif;
}

@media (max-width: 470px) {
    .button-wrapper[b-idazh1idf7] {
        justify-content: center !important;
    }
}

/* Ensure placeholders use HelveticaNeue */
[b-idazh1idf7]::placeholder {
    font-family: 'HelveticaNeue', sans-serif;
}

/* Login Container */
.login-container[b-idazh1idf7] {
    height: 100vh;
    width: 100%; /* Full width for the container */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    background-color: #f8f8f8;
    text-align: center; /* Center all items horizontally */
}

/* Inner Content: Center Form */
.login-content[b-idazh1idf7] {
    width: 90%; /* Use responsive width */
    max-width: 400px; /* Limit maximum width */
    padding: 20px; /* Add padding inside */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center form items horizontally */
}

/* Logo Image */
.logo-image[b-idazh1idf7] {
    max-height: 90px; /* Default height */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px; /* Space below the logo */
}

@media (max-width: 576px) {
    .logo-image[b-idazh1idf7] {
        max-height: 70px; /* Reduce height for smaller screens */
        margin-bottom: 15px; /* Adjust spacing */
    }
}

@media (max-width: 360px) {
    .logo-image[b-idazh1idf7] {
        max-height: 60px; /* Smaller for very small screens */
        margin-bottom: 10px; /* Reduce spacing further */
    }
}


[b-idazh1idf7] .validation-message {
    color: #dc3545;
    font-family: 'AeonikPro Regular';
    font-size: 12px;
}
.verification-title[b-idazh1idf7] { 
    font-size: 38px; 
}

.verification-subtitle[b-idazh1idf7] {
    font-family: "AeonikPro Regular";
    font-size:20px;
    color: black !important; 
}

.verification-error-message[b-idazh1idf7] {
    text-align: left;
    font-size: 16px;
    color: #a71d29;
}

.verification-error-description[b-idazh1idf7] {
    text-align: left;
    font-family: "AeonikPro Regular";
    font-size: 16px;
    color:black !important;
}

/* Header */
.login-header[b-idazh1idf7] {
    margin-top: 30px;
    margin-bottom: 40px;
    text-align: left; /* Keep text alignment left */
    width: 100%; /* Stretch header to match container width */
}

/* Login Title */
.login-title[b-idazh1idf7] {
    width: 100%; /* Full width within container */
    max-width: 450px; /* Increase maximum width */
    font-family: 'AeonikPro Medium';
    font-size: 45px;
    color: #000 !important;
    margin: 0 auto; /* Center title horizontally */
}

/* Login Subtitle */
.login-subtitle[b-idazh1idf7] {
    width: 100%; /* Full width within container */
    max-width: 450px; /* Increase maximum width */
    font-family: 'AeonikPro Regular', sans-serif;
    font-size: 20px;
    color: #000 !important;
    margin: 0 auto; /* Center subtitle horizontally */
}

/* Labels */
[b-idazh1idf7] .input-label {
    font-size: 0.9rem;
    margin-bottom:10px;
}

/* Input Fields Container */
.form-group[b-idazh1idf7] {
    width: 100%; /* Use full width of the parent container */
    max-width: 450px; /* Restrict maximum width */
    margin: 0 auto; /* Center inputs horizontally */
    display: flex;
    flex-direction: column;
}

/* Input Fields */
[b-idazh1idf7] .form-control {
    width: 100%; /* Match the width of the container */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    height: 45px; /* Slightly larger height */
    padding: 0.375rem 0.75rem !important; /* Keep important padding */
    box-sizing: border-box;
}

    [b-idazh1idf7] .form-control:focus {
        outline: none; /* Remove the blue outline */
        border-color: inherit; /* Keep the border color consistent */
        font-weight: bold; /* Keep the existing bold style */
        box-shadow: none; /* Remove the shadow effect */
    }

/* Form */
[b-idazh1idf7] .login-form {
    width: 100% !important; /* Full width within container */
    display: flex;
    flex-direction: column;
}

/* Submit Button */
[b-idazh1idf7] .submit_button {
    width: 100%; /* Use full width of the container */
    max-width: 400px; /* Restrict maximum width */    
    cursor: pointer;  
}

/* Help Center Container */
.help-center[b-idazh1idf7] {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Align icon and text vertically */
    gap: 8px; /* Space between icon and text */
    padding-top: 100px; /* Default padding */
}

/* Help Icon */
.help-icon[b-idazh1idf7] {
    width: 24px; /* Default size */
    height: 24px;
    object-fit: contain;
}

/* Help Link */
.help-link[b-idazh1idf7] {
    color: #6c63ff;
    font-size: 20px; /* Default font size */
    text-decoration: none;
}

/* Responsive Adjustments Based on Screen Height */
@media (max-height: 680px) {
    .help-center[b-idazh1idf7] {
        padding-top: 30px; /* Reduce padding for shorter screens */
    }

    .help-link[b-idazh1idf7] {
        font-size: 18px; /* Slightly smaller font size */
    }

    .help-icon[b-idazh1idf7] {
        width: 20px; /* Adjust icon size */
        height: 20px;
    }
}

@media (max-height: 500px) {
    .help-center[b-idazh1idf7] {
        padding-top: 20px; /* Minimize padding for very short screens */
    }

    .help-link[b-idazh1idf7] {
        font-size: 16px; /* Further reduce font size */
    }

    .help-icon[b-idazh1idf7] {
        width: 18px; /* Smaller icon */
        height: 18px;
    }
}
@media (max-height: 570) {
    .help-center[b-idazh1idf7] {
        padding-top: 20px; /* Minimize padding for very short screens */
    }
}

/* Responsive Design */
@media (max-width: 576px) {
    .login-content[b-idazh1idf7] {
        width: 100%; /* Adjust width for smaller screens */
    }

    .login-title[b-idazh1idf7],
    .login-subtitle[b-idazh1idf7],
    .form-group[b-idazh1idf7],
    [b-idazh1idf7] .submit_button {
        width: 100%; /* Adjust width for smaller screens */
    }

    .login-title[b-idazh1idf7] {
        font-size: 35px; /* Adjust font size for smaller screens */
    }

    .login-subtitle[b-idazh1idf7] {
        font-size: 16px; /* Adjust subtitle font size for smaller screens */
    }

    [b-idazh1idf7] .form-control {
        font-size: 0.8rem;
        height: 40px;
    }
}

@media (min-width: 768px) {
    .login-content[b-idazh1idf7] {
        width: 60%; /* Slightly wider on larger screens */
    }

    .login-title[b-idazh1idf7] {
        font-size: 50px; /* Slightly larger font for larger screens */
    }
}

/*MODAL CSS*/
.textbox-wrapper[b-idazh1idf7] {
    gap: 2rem !important;
}

@media (max-width: 450px) {
    .textbox-wrapper[b-idazh1idf7] {
        gap: 1.5rem !important;
    }
}

@media (max-width: 375px) {
    .textbox-wrapper[b-idazh1idf7] {
        gap: 0.5rem !important;
    }
}

.modal-content[b-idazh1idf7] {
    border-radius: 16px;
    padding: 20px;
}

.modal-header h5[b-idazh1idf7] {
    font-size: 1.5rem;
}

.otp-input[b-idazh1idf7] {
    width: 40px;
    height: 50px;
    font-size: 40px;
    font-family: "AeonikPro Regular";
    border: none;
    border-bottom: 2px solid #000;
    text-align: center;
    transition: border-bottom 0.2s;
}

    .otp-input:focus[b-idazh1idf7] {
        border-bottom: 3px solid #000; /* Bold border on focus */
        font-weight: bold; /* Make the text bold on focus */
        outline: none; /* Remove default outline */
    }

.resend-link[b-idazh1idf7] {
    display: inline-block;
    margin-top: 20px; /* Space from textboxes */
    color: #4a27ef;
    font-size: 20px;
    text-decoration: none;
}

    .resend-link:hover[b-idazh1idf7] {
        color: #4a27ef;
        text-decoration: none;
    }
/* _content/KarootPlusWeb/Components/Pages/NewTrip.razor.rz.scp.css */
.new-trip-container[b-0o1s1hahq3] {
    padding: 1.5rem;
}

/*select.placeholder {
    color: #aaa;*/ /* light gray */
/*}*/

.trip-box[b-0o1s1hahq3] {
    background-color: #e0e6ff;
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: space-between;
    align-items: center;
}

.form-group[b-0o1s1hahq3] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 220px;
}

    .form-group label[b-0o1s1hahq3] {
        font-weight: 500;
        margin-bottom: 0.5rem;
        color: #333;
    }

.form-control[b-0o1s1hahq3] {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-weight: bold;
    font-size: 0.95rem;
}

.find-taxi-button[b-0o1s1hahq3] {
    font-family: 'AeonikPro Medium';
    margin-top: 27px;
    background-color: black;
    color: white;
    font-weight: 600;
    padding: 0.6rem 2rem;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .find-taxi-button[disabled][b-0o1s1hahq3] {
        opacity: 0.6;
        cursor: not-allowed;
    }

.spinner[b-0o1s1hahq3] {
    border: 3px solid white;
    border-top: 3px solid transparent;
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
    animation: spin-b-0o1s1hahq3 0.8s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin-b-0o1s1hahq3 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.info-text[b-0o1s1hahq3] {
    font-family: 'AeonikPro Regular';
    margin-top: 1.5rem;
    font-size: 1rem;
}

    .info-text a[b-0o1s1hahq3] {
        font-family: 'AeonikPro Medium';
        color: #4a27ef;
        text-decoration: none;
    }

        .info-text a:hover[b-0o1s1hahq3] {
            text-decoration: underline;
        }

@media (max-width: 768px) {
    .trip-box[b-0o1s1hahq3] {
        flex-direction: column;
        align-items: stretch;
    }

    .form-group[b-0o1s1hahq3] {
        min-width: unset;
        width: 100%;
    }

    .find-taxi-button[b-0o1s1hahq3] {
        width: 100%;
        margin-top: 1rem;
    }
}
