/* /Components/Layout/CompanyView.razor.rz.scp.css */
.menu-title-centered[b-x7z8fci8xk] {
    color: white !important;
    font-weight: 600;
    font-size: 1.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 50vw;
    /* Adjust this value as needed */
    display: block;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-sq5cfqm0ev] {
    height: 100%;
    font-family: var(--bs-font-sans-serif);
}

[b-sq5cfqm0ev] .icon {
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-position: center center;
    -webkit-mask-mask-position: center center;
    width: 1rem;
    height: 1rem;
    background-repeat: no-repeat;
}

[b-sq5cfqm0ev] #menu-top {
    display: block;
}

    [b-sq5cfqm0ev] #menu-top.hidden {
        display: none;
    }

[b-sq5cfqm0ev] .icon-back {
    -webkit-mask-image: url("images/back.svg");
    mask-image: url("images/back.svg");
}

[b-sq5cfqm0ev] .icon-menu {
    -webkit-mask-image: url("images/menu.svg");
    mask-image: url("images/menu.svg");
}

[b-sq5cfqm0ev] .content {
    overflow: auto;
    display: flex;
    flex-direction: column;
}

[b-sq5cfqm0ev] .menu-button:hover .icon {
    background-color: var(--dxbl-btn-hover-color);
}

.menu-card-container[b-sq5cfqm0ev] {
    border-radius: 0 !important;
    border: none;
    box-shadow: none;
    background-color: #ADB9CA !important;
}

.menu-icon .dx-button[b-sq5cfqm0ev] {
    background-color: transparent;
    border: none;
    color: white;
    transition: background-color 0.3s;
}

    .menu-icon .dx-button:hover[b-sq5cfqm0ev] {
        background-color: var(--dxbl-btn-hover-color);
    }

.menu-title-centered[b-sq5cfqm0ev] {
    color: white !important;
    font-weight: 600;
    font-size: 1.5rem;
}


.nav-buttons-container[b-sq5cfqm0ev] {
    display: flex;
    gap: 10px;
    padding: 0;
    /* Removed top padding to sit flush at top */
    position: sticky;
    top: 0;
    z-index: 910;
    /* Reduced to 910 to be below modals (1050) but above content/sidebar */
    background-color: var(--bs-body-bg);
    /* Ensure background is solid so content doesn't show through */
}

    .nav-buttons-container[b-sq5cfqm0ev]  .menubutton-float-end {
        margin-left: auto;
    }

    .nav-buttons-container[b-sq5cfqm0ev]  .dxbl-btn-icon-only {
        --dxbl-btn-padding-x: 0.75rem;
        --dxbl-btn-padding-y: 0.25rem;
    }



@media (max-width: 768px) {
    [b-sq5cfqm0ev] #menu-top {
        display: none;
    }
}

.hamburger-btn[b-sq5cfqm0ev] {
    opacity: 0.8;
    transition: transform 0.2s ease, opacity 0.2s ease;
    z-index: 2000;
    /* Ensure it's above the sidebar */
    position: relative;
    /* Needed for z-index to work if not absolute/fixed */
}

    .hamburger-btn:hover[b-sq5cfqm0ev] {
        opacity: 1;
        transform: scale(1.1);
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
#sidebar[b-nx7wyesef4] {
    min-width: 15rem;
    max-width: 15rem;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.16);
    transition: transform 0.1s ease-out;
    height: 100%;
    max-height: 100%;
    background-image: linear-gradient(180deg, var(--bs-primary) 0%, var(--bs-black) 150%);
    display: block;
}

/* Responsive Sidebar Toggle Logic */

/* Mobile: Hidden by default, Show when toggled */
@media (max-width: 992px) {
    #sidebar[b-nx7wyesef4] {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        display: none;
        z-index: 900;
    }

        #sidebar.sidebar-toggled[b-nx7wyesef4] {
            display: block !important;
        }

            #sidebar.sidebar-toggled .menu-closeonclick-placeholder[b-nx7wyesef4] {
                display: block;
                background: rgba(0, 0, 0, 0.5);
                z-index: -1;
            }
}

/* Desktop: Visible by default, Hide when toggled */
@media (min-width: 993px) {
    #sidebar.sidebar-toggled[b-nx7wyesef4] {
        display: none !important;
    }
}

/* Legacy support or cleanup */
#sidebar.auto-expanded[b-nx7wyesef4] {
    display: none;
}

#sidebar.auto-expanded[b-nx7wyesef4] {
    display: none;
    /* Old logic, preserving just in case but likely unused now */
}

#sidebar .menu-closeonclick-placeholder[b-nx7wyesef4] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}


.sidebar-header[b-nx7wyesef4] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.app-title-card[b-nx7wyesef4] {
    margin: 2rem 1rem;
    padding: 1.5rem 0rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    overflow: hidden;
}

.app-title[b-nx7wyesef4] {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #FFF;
}

.menu-button-container[b-nx7wyesef4] {
    align-self: center;
}

.menu-button[b-nx7wyesef4] {
    padding: 0.375rem;
    width: 1rem;
    height: 1rem;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

[b-nx7wyesef4] .menu.display-mobile {
    margin-bottom: 2rem;
}

[b-nx7wyesef4] .menu {
    background-color: inherit;
    margin-left: 1rem;
    margin-right: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

    [b-nx7wyesef4] .menu .dxbl-menu-item-list {
        gap: 0.5rem;
    }

[b-nx7wyesef4] .menu-item {
    color: var(--bs-white);
}

[b-nx7wyesef4] .icon {
    width: 1rem;
    height: 1rem;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 0.5rem;
    opacity: 0.4;
}

[b-nx7wyesef4] .home-icon {
    background-image: url("images/home.svg");
}

[b-nx7wyesef4] .weather-icon {
    background-image: url("images/weather.svg");
}

[b-nx7wyesef4] .counter-icon {
    background-image: url("images/counter.svg");
}


[b-nx7wyesef4] .docs-icon {
    mask-image: url("images/doc.svg");
    -webkit-mask-image: url("images/doc.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--dxbl-btn-color);
}

[b-nx7wyesef4] .demos-icon {
    mask-image: url("images/demos.svg");
    -webkit-mask-image: url("images/demos.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--dxbl-btn-color);
}

[b-nx7wyesef4] .footer-button:hover .demos-icon {
    background-color: var(--dxbl-btn-hover-color);
}

[b-nx7wyesef4] .footer-button:hover .docs-icon {
    background-color: var(--dxbl-btn-hover-color);
}

.footer[b-nx7wyesef4] {
    text-align: center;
    gap: 0.5rem;
    padding-bottom: 1.5rem;
}

    .footer .icon[b-nx7wyesef4] {
        margin-left: 0;
    }

#sidebar.auto-expanded .layout-item[b-nx7wyesef4] {
    display: block;
}


#sidebar.auto-expanded .footer[b-nx7wyesef4] {
    display: block;
}



.site-logo[b-nx7wyesef4] {
    height: 70px;
    width: auto;
    display: inline-block;
}

.profile-card-glass[b-nx7wyesef4] {
    width: 100%;
    max-width: 210px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-align: center;
}

    .profile-card-glass h4[b-nx7wyesef4] {
        margin: 5px 0;
        font-size: 18px;
        font-weight: bold;
    }

    .profile-card-glass h6[b-nx7wyesef4] {
        margin: 5px 0;
        font-size: 14px;
        color: #d1d1d1;
    }
/* /Components/Layout/PageLayout.razor.rz.scp.css */
.page[b-kmm24c2s6z] {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    background-color: var(--bs-secondary);
    overflow: auto;
}

.gradient[b-kmm24c2s6z] {
    --size: 750px;
    --speed: 50s;
    --easing: cubic-bezier(0.8, 0.2, 0.2, 0.8);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: var(--size);
    height: var(--size);
    filter: blur(calc(var(--size) / 5));
    background-image: linear-gradient(135deg, var(--bs-secondary-hover), var(--bs-secondary-hover));
    animation: rotate-b-kmm24c2s6z var(--speed) var(--easing) infinite;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
}

@keyframes rotate-b-kmm24c2s6z {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
/* /Components/Pages/airway/AirwayLoadDetail.razor.rz.scp.css */
.dxfl-caption[b-8fhitkpkmb] {
    font-weight: bold;
    color: black;
    font-size: large;
}

.bordered-form[b-8fhitkpkmb] {
    border: 1px solid #ccc;
    padding: 16px;
    border-radius: 8px;
    background-color: #f9f9f9;
}
/* /Components/Pages/airway/AirwayLoadList.razor.rz.scp.css */
.dxbl-grid .dxbl-btn[b-hbg31tcykc],
.dxbl-grid .dxbl-btn .dxbl-btn-text[b-hbg31tcykc],
.dxbl-grid .dxbl-btn span[b-hbg31tcykc] {
    white-space: nowrap !important;
    overflow-wrap: normal !important;
    word-break: keep-all !important;
}

.grid-actions[b-hbg31tcykc] {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
}
/* /Components/Pages/Feedback.razor.rz.scp.css */

/* Global Clean Up */
.feedback-page-wrapper[b-h3b3mj9nem] {
    overflow-x: hidden;
    width: 100%;
}

/* Left Panel Styling */
.left-panel[b-h3b3mj9nem] {
    background: linear-gradient(135deg, #223C5A 0%, #162436 100%); /* Navbar color tone */
    min-height: 100vh;
    z-index: 1;
}

.character-counter small[b-h3b3mj9nem] {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.7;
}


.popup-mode .left-panel[b-h3b3mj9nem] {
    min-height: 100%;
    height: auto;
    border-radius: 8px 0 0 8px; /* Optional rounded corners */
}

.popup-mode .right-panel[b-h3b3mj9nem] {
    height: 100%;
    overflow-y: auto;
}

.popup-mode .form-container[b-h3b3mj9nem] {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.popup-mode[b-h3b3mj9nem] {
    height: 100%;
    overflow: hidden;
}

.icon-floating-wrapper[b-h3b3mj9nem] {
    animation: float-b-h3b3mj9nem 6s ease-in-out infinite;
}

.icon-circle[b-h3b3mj9nem] {
    background: rgba(255, 255, 255, 0.25);
    width: 120px; /* Larger icon */
    height: 120px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    margin-bottom: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    transition: transform 0.3s ease;
}

    .icon-circle:hover[b-h3b3mj9nem] {
        transform: scale(1.1) rotate(10deg);
    }

/* Animated Shapes */
.abstract-shape[b-h3b3mj9nem] {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; /* Blobs */
    animation: rotate-b-h3b3mj9nem 20s infinite linear;
    z-index: 0;
}

.shape-1[b-h3b3mj9nem] {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-duration: 25s;
}

.shape-2[b-h3b3mj9nem] {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -150px;
    animation-duration: 30s;
    animation-direction: reverse;
}

.shape-3[b-h3b3mj9nem] {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 10%;
    background: rgba(255,255,255,0.05);
}

/* Right Panel & Form */
.right-panel[b-h3b3mj9nem] {
    background-color: #f0f2f5; /* Light grey background */
}

/* Input Cards */
.input-card[b-h3b3mj9nem] {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); /* Soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid transparent;
}

    .input-card:hover[b-h3b3mj9nem] {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border-left-color: #4facfe; /* Highlight on hover */
    }

    .input-card:focus-within[b-h3b3mj9nem] {
        border-left-color: #26b050; /* Soft Green on Focus */
        box-shadow: 0 10px 30px rgba(38, 176, 80, 0.15);
    }

    /* Valid/Filled State - Using :has() for modern support */
    .input-card:has(.modified.valid)[b-h3b3mj9nem] {
        border-left-color: #26b050;
    }

.custom-label[b-h3b3mj9nem] {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #34495e; /* Darker label */
    display: block;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Input Styling - Clean */
.split-input[b-h3b3mj9nem] {
    --dx-editor-bg: #f8f9fa;
    --dx-editor-border-color: #e9ecef;
    --dx-editor-border-radius: 8px;
    --dx-editor-padding-y: 12px;
}

[b-h3b3mj9nem] .dxbs-fl-ctrl.split-input {
    background-color: #f8f9fa !important;
    border: 1px solid #e9ecef !important;
    transition: all 0.2s ease;
}

    [b-h3b3mj9nem] .dxbs-fl-ctrl.split-input:focus-within {
        background-color: #fff !important;
        border-color: #26b050 !important; /* Soft Green Border on Focus */
        box-shadow: 0 0 0 0.2rem rgba(38, 176, 80, 0.25);
    }

    [b-h3b3mj9nem] .dxbs-fl-ctrl.split-input.modified.valid {
        border-color: #26b050 !important;
        background-color: #f8fff9 !important;
    }

/* Button Styling */
.split-submit-btn[b-h3b3mj9nem] {
    width: 100%;
    padding: 18px 0;
    border-radius: 50px !important; /* Rounded pill button */
    background: #FE7109; /* Site Orange */
    border: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(254, 113, 9, 0.3);
    cursor: pointer;
}

    .split-submit-btn:hover:not(:disabled)[b-h3b3mj9nem] {
        transform: scale(1.02);
        background: #A14700; /* Darker Orange on hover */
        box-shadow: 0 15px 30px rgba(254, 113, 9, 0.4);
    }

    .split-submit-btn:disabled[b-h3b3mj9nem] {
        opacity: 0.7;
        cursor: not-allowed;
    }

.btn-text[b-h3b3mj9nem] {
    color: white !important;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1rem;
    z-index: 2;
}

.btn-arrow[b-h3b3mj9nem] {
    transition: transform 0.3s ease;
}

.split-submit-btn:hover .btn-arrow[b-h3b3mj9nem] {
    transform: translateX(10px);
}

/* Button Shine Effect */
.btn-shine[b-h3b3mj9nem] {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: none;
    pointer-events: none;
}

.split-submit-btn:hover .btn-shine[b-h3b3mj9nem] {
    animation: shine-b-h3b3mj9nem 0.75s;
}

/* Animations Keyframes */
@keyframes float-b-h3b3mj9nem {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes rotate-b-h3b3mj9nem {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes shine-b-h3b3mj9nem {
    100% {
        left: 125%;
    }
}

.animate__animated[b-h3b3mj9nem] {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.animate__fadeInUp[b-h3b3mj9nem] {
    animation-name: fadeInUp-b-h3b3mj9nem;
}

.animate__fadeInRight[b-h3b3mj9nem] {
    animation-name: fadeInRight-b-h3b3mj9nem;
}

.animate__delay-200ms[b-h3b3mj9nem] {
    animation-delay: 0.2s;
}

.animate__delay-300ms[b-h3b3mj9nem] {
    animation-delay: 0.3s;
}

.animate__delay-400ms[b-h3b3mj9nem] {
    animation-delay: 0.4s;
}

@keyframes fadeInUp-b-h3b3mj9nem {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight-b-h3b3mj9nem {
    from {
        opacity: 0;
        transform: translate3d(50px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* /Components/Pages/land/LandHome.razor.rz.scp.css */
/* /Components/Pages/land/LandLoadDetail.razor.rz.scp.css */
.dxfl-caption[b-5bqothpvgj] {
    font-weight: bold;
    color: black;
    font-size: large;
}

.bordered-form[b-5bqothpvgj] {
    border: 1px solid #ccc;
    padding: 16px;
    border-radius: 8px;
    background-color: #f9f9f9;
}
/* /Components/Pages/LoginPage.razor.rz.scp.css */
.container-fluid[b-2i054b6r28] {
    height: 100vh;
    overflow-y: auto;
}

.bg-left[b-2i054b6r28] {
    background: linear-gradient(180deg, var(--bs-primary) 0%, var(--bs-black) 150%);
}

.logo-img[b-2i054b6r28] {
    max-width: 200px;
    height: auto;
}

.app-subtitle[b-2i054b6r28] {
    font-size: 0.9rem;
    letter-spacing: 2px;
    opacity: 0.8;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .logo-img[b-2i054b6r28] {
        max-width: 250px;
    }

    .container-fluid[b-2i054b6r28] {
        overflow-y: visible;
    }
}

.mobile-logo-container[b-2i054b6r28] {
    width: 100%;
}

    .mobile-logo-container .logo-img[b-2i054b6r28] {
        max-width: 180px;
        filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
    }

/* Flip Card Animation */
.flip-card[b-2i054b6r28] {
    background-color: transparent;
    width: 100%;
    max-width: 400px;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    /* Important: Allow the button to hang below */
    overflow: visible;
    min-height: 520px;
    /* Ensure enough height for the content + floating button */
    margin-bottom: 60px;
    /* Space for the button translateY(45px) */
}

@media (min-width: 768px) {
    .flip-card[b-2i054b6r28] {
        margin-bottom: 0;
    }
}

.flip-card-inner[b-2i054b6r28] {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-transition: -webkit-transform 0.8s ease;
    transition: transform 0.8s ease;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    /* Important: Allow the button to hang below */
    overflow: visible;
}

.is-flipped .flip-card-inner[b-2i054b6r28] {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.flip-card-front[b-2i054b6r28],
.flip-card-back[b-2i054b6r28] {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Important: Allow the button to hang below */
    overflow: visible;
    /* Force GPU acceleration and correct layering in Safari */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.flip-card-back[b-2i054b6r28] {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: rotateY(180deg) translateZ(1px);
    transform: rotateY(180deg) translateZ(1px);
    z-index: 2;
}

.forgot-password-link[b-2i054b6r28] {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    display: inline-block;
}

    .forgot-password-link:hover[b-2i054b6r28] {
        color: var(--bs-tertiary);
    }

.password-wrapper[b-2i054b6r28] {
    position: relative;
    display: flex;
    align-items: center;
}

    .password-wrapper .form-control[b-2i054b6r28] {
        padding-right: 40px;
    }

.password-toggle[b-2i054b6r28] {
    position: absolute;
    right: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: 5;
}
/* /Components/Pages/ModulePage.razor.rz.scp.css */
.module-page-wrapper[b-oftguk4urz] {
    min-height: 100vh;
    background: linear-gradient(135deg, #162436 0%, #223c5a 100%);
    position: relative;
    overflow-x: hidden;
    color: white;
}

.background-decor[b-oftguk4urz] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.blob[b-oftguk4urz] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: blob-float-b-oftguk4urz 20s infinite alternate;
}

.blob-1[b-oftguk4urz] {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    background: rgba(254, 113, 9, 0.15);
}

.blob-2[b-oftguk4urz] {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -150px;
    background: rgba(38, 176, 80, 0.1);
    animation-delay: -5s;
}

.blob-3[b-oftguk4urz] {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 10%;
    background: rgba(254, 113, 9, 0.08);
    animation-delay: -10s;
}

@keyframes blob-float-b-oftguk4urz {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.logo-img[b-oftguk4urz] {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.app-title[b-oftguk4urz] {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
    .app-title[b-oftguk4urz] {
        font-size: 1.2rem;
    }

    .logo-img[b-oftguk4urz] {
        max-width: 80px;
    }
}

.z-index-1[b-oftguk4urz] {
    z-index: 1;
}

.z-index-2[b-oftguk4urz] {
    z-index: 2;
}

.module-card[b-oftguk4urz] {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    height: 100%;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

    .module-card:hover[b-oftguk4urz] {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

.background-icon[b-oftguk4urz] {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    pointer-events: none;
    user-select: none;
    transition: all 0.5s ease;
}

.module-card:hover .background-icon[b-oftguk4urz] {
    transform: scale(1.2) rotate(-5deg);
    color: rgba(255, 255, 255, 0.05);
}

.card-content[b-oftguk4urz] {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.icon-wrapper[b-oftguk4urz] {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.module-card:hover .icon-wrapper[b-oftguk4urz] {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--bs-tertiary);
    background: linear-gradient(135deg, rgba(254, 113, 9, 0.2) 0%, rgba(254, 113, 9, 0.1) 100%);
}

.module-title[b-oftguk4urz] {
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.module-description[b-oftguk4urz] {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 0;
}

.go-button-wrapper[b-oftguk4urz] {
    margin-top: auto;
    opacity: 0.8;
    transform: translateY(5px);
    transition: all 0.3s ease;
}

.module-card:hover .go-button-wrapper[b-oftguk4urz] {
    opacity: 1;
    transform: translateY(0);
}

.custom-go-button[b-oftguk4urz] {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.6rem 2.2rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 170px;
}

    .custom-go-button:hover[b-oftguk4urz] {
        background: var(--bs-tertiary);
        border-color: var(--bs-tertiary);
        color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.transition-icon[b-oftguk4urz] {
    position: absolute;
    right: 1.2rem;
    opacity: 0;
    display: inline-block;
    vertical-align: middle;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateX(-10px);
    pointer-events: none;
}

.custom-go-button:hover .transition-icon[b-oftguk4urz] {
    opacity: 1;
    transform: translateX(0);
}

.logout-button[b-oftguk4urz] {
    background-color: var(--bs-white);
    color: var(--bs-tertiary);
    border-radius: 50px;
    border: none;
    padding: 0.7rem;
    width: 40px;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: start;
    text-decoration: none;
    position: relative;
}

    .logout-button i[b-oftguk4urz] {
        font-size: 1rem;
        min-width: 20px;
    }

.logout-text[b-oftguk4urz] {
    opacity: 0;
    color: var(--bs-white);
    margin-left: 0.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: opacity 0.3s ease;
}

.logout-button:hover[b-oftguk4urz] {
    width: 140px;
    background-color: var(--bs-tertiary);
    border-color: var(--bs-tertiary);
    color: var(--bs-white);
}

    .logout-button:hover i[b-oftguk4urz],
    .logout-button:hover .logout-text[b-oftguk4urz] {
        color: var(--bs-white);
    }

    .logout-button:hover .logout-text[b-oftguk4urz] {
        opacity: 1;
    }
/* /Components/Pages/seaway/SeawayLoadFiles.razor.rz.scp.css */
.dxfl-caption[b-b4lghdecsn] {
    font-weight: bold;
    color: black;
    font-size: large;
}

.bordered-form[b-b4lghdecsn] {
    border: 1px solid #ccc;
    padding: 16px;
    border-radius: 8px;
    background-color: #f9f9f9;
}
/* /Components/Pages/seaway/SeawayLoadList.razor.rz.scp.css */
.dxbl-grid .dxbl-btn[b-w4ynqnx3cn],
.dxbl-grid .dxbl-btn .dxbl-btn-text[b-w4ynqnx3cn],
.dxbl-grid .dxbl-btn span[b-w4ynqnx3cn] {
    white-space: nowrap !important;
    overflow-wrap: normal !important;
    word-break: keep-all !important;
}

.grid-actions[b-w4ynqnx3cn] {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
}
/* /Components/Pages/storage/material/MaterialAdd.razor.rz.scp.css */
/* /Components/Pages/storage/material/MaterialAddWithFile.razor.rz.scp.css */
/* .textbox-style { */
/*     border: 0px solid darkorchid; */
/*     border-radius: 3px; */
/* } */

/* .btn-float-left { */
/*     float: left; */
/* } */

/* .btn-float-right { */
/*     float: right; */
/* } */

/* .spin-float-right { */
/*     text-align: right; */
/* } */

/* .my-style { */
/*     min-width: 600px; */
/* } */

/* .totalWith { */
/*     min-width: 250px; */
/* } */

/* .my-style-caption { */
/*     font: bold; */
/*     color: red; */
/* } */

/* .highlighted-item:hover, .highlighted-item:hover > td { */
/*     background-color: lightcoral; */
/* } */

/* .file-input-zone { */
/*     display: flex; */
/*     align-items: center; */
/*     justify-content: center; */
/*     background-color: steelblue; */
/*     color: white; */
/*     cursor: pointer; */
/*     position: relative; */
/*     width: 200px; */
/*     height: 32px; */
/* } */

/*     .file-input-zone:hover { */
/*         background-color: lightblue; */
/*     } */

/*     .file-input-zone input[type=file] { */
/*         position: absolute; */
/*         width: 100%; */
/*         height: 100%; */
/*         opacity: 0; */
/*         cursor: pointer; */
/*     } */
/* .custom-drop-zone {
							padding: 0 !important;
							border-style: dashed;
							border-width: 2px !important;
							height: 230px;
							display: flex;
							flex-direction: column;
							align-items: center;
							justify-content: center;
							background-color: rgba(183, 183, 183, 0.1);
						}

							.custom-drop-zone.custom-drop-zone-hover {
								border-style: solid;
							}

							.custom-drop-zone svg {
								width: 42px;
								height: 42px;
							}

							.custom-drop-zone > *:not(#overviewDemoSelectButton) {
								pointer-events: none;
							}

						.upload-validation-text {
							flex-direction: column;
							align-items: flex-end;
							font-size: 12px;
						}

						.demo-progress-indeterminate {
							width: 350px;
							height: 200px;
							display: flex;
							justify-content: center;
							align-items: center;
						} */

.custom-drop-zone[b-iiire4e6i8] {
    padding: 0 !important;
    border-style: dashed;
    border-width: 2px !important;
    height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(183, 183, 183, 0.1);
}

    .custom-drop-zone.custom-drop-zone-hover[b-iiire4e6i8] {
        border-style: solid;
    }

    .custom-drop-zone svg[b-iiire4e6i8] {
        width: 42px;
        height: 42px;
    }

    .custom-drop-zone > *:not(#overviewDemoSelectButton)[b-iiire4e6i8] {
        pointer-events: none;
    }

.upload-validation-text[b-iiire4e6i8] {
    flex-direction: column;
    align-items: flex-end;
    font-size: 12px;
}

.drop-file-icon[b-iiire4e6i8] {
    background-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    background-position: center center;
    background-color: #ADB5BD;
    width: 48px;
    height: 48px;
}

.drop-file-label[b-iiire4e6i8] {
    font-weight: 500;
    font-size: 1rem;
}
/* /Components/Pages/storage/material/MaterialDetail.razor.rz.scp.css */
/* /Components/Pages/storage/material/MaterialList.razor.rz.scp.css */
/* /Components/Pages/storage/order/OrderAdd.razor.rz.scp.css */

/* /Components/Pages/storage/order/OrderAddWithFile.razor.rz.scp.css */
/* /Components/Pages/storage/order/OrderDetail.razor.rz.scp.css */
/* /Components/Pages/storage/order/OrderList.razor.rz.scp.css */
/* /Components/Pages/storage/stock/StockDetail.razor.rz.scp.css */
/* /Components/Pages/storage/stock/StockList.razor.rz.scp.css */
/* /Components/Pages/surveys/CurrentCustomerSurvey.razor.rz.scp.css */
.survey-page-wrapper[b-h65zcjylgc] {
    min-height: 100%;
    background: linear-gradient(135deg, #162436 0%, #223c5a 100%);
    position: relative;
    overflow-x: hidden;
}

.background-decor[b-h65zcjylgc] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.blob[b-h65zcjylgc] {
    position: absolute;
    background: rgba(254, 113, 9, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.blob-1[b-h65zcjylgc] {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.blob-2[b-h65zcjylgc] {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -150px;
    background: rgba(38, 176, 80, 0.05);
}

.blob-3[b-h65zcjylgc] {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 10%;
}

.brand-logo[b-h65zcjylgc] {
    max-width: 150px;
    height: auto;
}

.survey-header[b-h65zcjylgc] {
    text-align: center;
    margin-bottom: 3rem;
}

.survey-card[b-h65zcjylgc] {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.question-text[b-h65zcjylgc] {
    color: #162436;
    font-weight: 700;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.q-num[b-h65zcjylgc] {
    background: #FE7109;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.rating-container[b-h65zcjylgc] {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.rating-btn[b-h65zcjylgc] {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    background: white;
    color: #495057;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .rating-btn:hover[b-h65zcjylgc] {
        transform: translateY(-3px);
        border-color: #FE7109;
        color: #FE7109;
    }

    .rating-btn.active[b-h65zcjylgc] {
        background: #FE7109;
        border-color: #FE7109;
        color: white;
        box-shadow: 0 8px 15px rgba(254, 113, 9, 0.3);
    }

.sleek-percentage-wrapper[b-h65zcjylgc] {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.percentage-display[b-h65zcjylgc] {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .percentage-display .value[b-h65zcjylgc] {
        font-size: 2.5rem;
        font-weight: 900;
        color: #FE7109;
        line-height: 1;
        font-family: 'Outfit', sans-serif;
    }

    .percentage-display .label[b-h65zcjylgc] {
        font-size: 0.7rem;
        font-weight: 700;
        color: #94a3b8;
        letter-spacing: 2px;
        margin-top: 5px;
    }

.slider-box[b-h65zcjylgc] {
    position: relative;
    padding-top: 20px;
}

.slider-container[b-h65zcjylgc] {
    position: relative;
    height: 4px;
    background: #e2e8f0;
    border-radius: 10px;
}

.sleek-range[b-h65zcjylgc] {
    -webkit-appearance: none;
    width: 100%;
    height: 100%;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    outline: none;
    cursor: pointer;
}

    .sleek-range[b-h65zcjylgc]::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 20px;
        height: 20px;
        background: white;
        border: 4px solid #FE7109;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(254, 113, 9, 0.3);
        cursor: pointer;
        transition: transform 0.2s ease;
    }

        .sleek-range[b-h65zcjylgc]::-webkit-slider-thumb:hover {
            transform: scale(1.1);
        }

.sleek-track-fill[b-h65zcjylgc] {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #FE7109;
    border-radius: 10px;
    z-index: 2;
}

.slider-markers-clickable[b-h65zcjylgc] {
    position: relative;
    height: 40px;
    margin-top: 15px;
}

.marker-item[b-h65zcjylgc] {
    position: absolute;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 5px;
    z-index: 10;
}

    .marker-item:hover[b-h65zcjylgc] {
        transform: translateX(-50%) translateY(-2px);
    }

        .marker-item:hover .val[b-h65zcjylgc] {
            color: #FE7109;
        }

        .marker-item:hover .dot[b-h65zcjylgc] {
            background: #FE7109;
            height: 8px;
        }

    .marker-item .dot[b-h65zcjylgc] {
        width: 2px;
        height: 5px;
        background: #cbd5e1;
        margin-bottom: 5px;
        transition: all 0.2s ease;
    }

    .marker-item .val[b-h65zcjylgc] {
        font-size: 0.75rem;
        font-weight: 700;
        color: #94a3b8;
        font-family: 'Outfit', sans-serif;
    }

.boolean-question[b-h65zcjylgc] {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 16px;
    height: 100%;
    transition: transform 0.2s ease;
}

    .boolean-question:hover[b-h65zcjylgc] {
        transform: translateY(-5px);
    }

.bool-text[b-h65zcjylgc] {
    font-weight: 600;
    font-size: 0.9rem;
    color: #34495e;
    margin-bottom: 12px;
    min-height: 2.7rem;
}

.feedback-btn-toggle[b-h65zcjylgc] {
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-submit[b-h65zcjylgc] {
    background: #FE7109;
    color: white;
    border: none;
    padding: 1.4rem;
    border-radius: 50px;
    font-weight: 900;
    letter-spacing: 2px;
    box-shadow: 0 10px 20px rgba(254, 113, 9, 0.15);
    transition: all 0.4s ease;
}

    .btn-submit:hover:not(:disabled)[b-h65zcjylgc] {
        transform: translateY(-5px);
        background: #e66608;
        box-shadow: 0 15px 30px rgba(254, 113, 9, 0.25);
    }


    .btn-submit:disabled[b-h65zcjylgc] {
        opacity: 0.7;
    }

.modern-input[b-h65zcjylgc] {
    --dx-editor-border-radius: 12px;
    --dx-editor-padding-y: 12px;
}
/* /Components/Pages/surveys/NewCustomerSurvey.razor.rz.scp.css */
.survey-page-wrapper[b-a70mr020q1] {
    min-height: 100%;
    background: linear-gradient(135deg, #162436 0%, #223c5a 100%);
    position: relative;
    overflow-x: hidden;
}

.background-decor[b-a70mr020q1] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.blob[b-a70mr020q1] {
    position: absolute;
    background: rgba(254, 113, 9, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.blob-1[b-a70mr020q1] {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.blob-2[b-a70mr020q1] {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -150px;
    background: rgba(38, 176, 80, 0.05);
}

.blob-3[b-a70mr020q1] {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 10%;
}

.brand-logo[b-a70mr020q1] {
    max-width: 150px;
    height: auto;
}

.survey-header[b-a70mr020q1] {
    text-align: center;
    margin-bottom: 3rem;
}

.survey-card[b-a70mr020q1] {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.question-text[b-a70mr020q1] {
    color: #162436;
    font-weight: 700;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.q-num[b-a70mr020q1] {
    background: #FE7109;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.rating-container[b-a70mr020q1] {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.rating-btn[b-a70mr020q1] {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    background: white;
    color: #495057;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .rating-btn:hover[b-a70mr020q1] {
        transform: translateY(-3px);
        border-color: #FE7109;
        color: #FE7109;
    }

    .rating-btn.active[b-a70mr020q1] {
        background: #FE7109;
        border-color: #FE7109;
        color: white;
        box-shadow: 0 8px 15px rgba(254, 113, 9, 0.3);
    }

.boolean-question[b-a70mr020q1] {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 16px;
    height: 100%;
    transition: transform 0.2s ease;
}

    .boolean-question:hover[b-a70mr020q1] {
        transform: translateY(-5px);
    }

.bool-text[b-a70mr020q1] {
    font-weight: 600;
    font-size: 0.9rem;
    color: #34495e;
    margin-bottom: 12px;
    min-height: 2.7rem;
}

.feedback-btn-toggle[b-a70mr020q1] {
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-submit[b-a70mr020q1] {
    background: #FE7109;
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 2px;
    box-shadow: 0 10px 20px rgba(254, 113, 9, 0.15);
    transition: all 0.3s ease;
}

    .btn-submit:hover:not(:disabled)[b-a70mr020q1] {
        transform: translateY(-3px);
        background: #e66608;
        box-shadow: 0 15px 25px rgba(254, 113, 9, 0.25);
    }

    .btn-submit:disabled[b-a70mr020q1] {
        opacity: 0.7;
    }

.modern-input[b-a70mr020q1] {
    --dx-editor-border-radius: 12px;
    --dx-editor-padding-y: 12px;
}
/* /Components/Pages/surveys/VisitPerformanceSurvey.razor.rz.scp.css */
.survey-page-wrapper[b-5ikj4zwcsn] {
    min-height: 100%;
    background: linear-gradient(135deg, #1e3a5f 0%, #162436 100%);
    position: relative;
    overflow-x: hidden;
}

.background-decor[b-5ikj4zwcsn] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.blob[b-5ikj4zwcsn] {
    position: absolute;
    background: rgba(254, 113, 9, 0.1);
    border-radius: 50%;
    filter: blur(100px);
}

.blob-1[b-5ikj4zwcsn] {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
}

.blob-2[b-5ikj4zwcsn] {
    width: 600px;
    height: 600px;
    bottom: -150px;
    left: -150px;
    background: rgba(38, 176, 80, 0.05);
}

.blob-3[b-5ikj4zwcsn] {
    width: 400px;
    height: 400px;
    top: 30%;
    left: -100px;
}

.brand-logo[b-5ikj4zwcsn] {
    max-width: 150px;
    height: auto;
}

.survey-header[b-5ikj4zwcsn] {
    text-align: center;
    margin-bottom: 3.5rem;
}

.survey-card[b-5ikj4zwcsn] {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    backdrop-filter: blur(15px);
}

.question-text[b-5ikj4zwcsn] {
    color: #162436;
    font-weight: 700;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    font-family: 'Outfit', sans-serif;
}

.q-num[b-5ikj4zwcsn] {
    background: #FE7109;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 4px 8px rgba(254, 113, 9, 0.2);
}

.rating-container[b-5ikj4zwcsn] {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.rating-btn[b-5ikj4zwcsn] {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    border: 2px solid #f1f5f9;
    background: white;
    color: #64748b;
    font-weight: 800;
    font-size: 1.35rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .rating-btn:hover[b-5ikj4zwcsn] {
        transform: translateY(-5px);
        border-color: #FE7109;
        color: #FE7109;
        box-shadow: 0 10px 20px rgba(254, 113, 9, 0.15);
    }

    .rating-btn.active[b-5ikj4zwcsn] {
        background: #FE7109;
        border-color: #FE7109;
        color: white;
        box-shadow: 0 12px 25px rgba(254, 113, 9, 0.4);
    }

.boolean-question[b-5ikj4zwcsn] {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 16px;
    height: 100%;
    transition: transform 0.2s ease;
}

    .boolean-question:hover[b-5ikj4zwcsn] {
        transform: translateY(-5px);
    }

.bool-text[b-5ikj4zwcsn] {
    font-weight: 600;
    font-size: 0.9rem;
    color: #34495e;
    margin-bottom: 12px;
    min-height: 2.7rem;
}

/* Star Rating System */
.star-rating-wrapper[b-5ikj4zwcsn] {
    display: flex;
    justify-content: center;
    gap: 20px;
}

    .star-rating-wrapper i[b-5ikj4zwcsn] {
        font-size: 3rem;
        color: #e2e8f0;
        cursor: pointer;
        transition: all 0.2s ease;
    }

        .star-rating-wrapper i:hover[b-5ikj4zwcsn] {
            transform: scale(1.2);
            color: #FFD700;
        }

        .star-rating-wrapper i.active[b-5ikj4zwcsn] {
            color: #FFD700;
        }

.rating-label[b-5ikj4zwcsn] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-top: 10px;
    min-height: 1.5rem;
}

.feedback-btn-toggle[b-5ikj4zwcsn] {
    border-radius: 50px;
    padding: 0.9rem 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 2px solid #FE7109;
    color: #FE7109;
}

    .feedback-btn-toggle:hover[b-5ikj4zwcsn] {
        background: #FE7109;
        color: white;
    }

    .feedback-btn-toggle.active[b-5ikj4zwcsn] {
        background: #1e3a5f;
        border-color: #1e3a5f;
        color: white;
    }

.btn-submit[b-5ikj4zwcsn] {
    background: #FE7109;
    color: white;
    border: none;
    padding: 1.4rem;
    border-radius: 50px;
    font-weight: 900;
    letter-spacing: 2px;
    box-shadow: 0 10px 20px rgba(254, 113, 9, 0.15);
    transition: all 0.4s ease;
}

    .btn-submit:hover:not(:disabled)[b-5ikj4zwcsn] {
        transform: translateY(-5px);
        background: #e66608;
        box-shadow: 0 15px 30px rgba(254, 113, 9, 0.25);
    }

    .btn-submit:disabled[b-5ikj4zwcsn] {
        opacity: 0.6;
    }

.modern-input[b-5ikj4zwcsn] {
    --dx-editor-border-radius: 12px;
    --dx-editor-bg: #f8fafc;
    --dx-editor-border-color: #e2e8f0;
}
/* /Components/Pages/transport/TransportLoadList.razor.rz.scp.css */
.grid-ellipsis[b-zb1n3b01cv] {
    display: inline-block;
    max-width: 260px; /* burada istediğin sabit sınırı ver */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.name-nowrap[b-zb1n3b01cv] {
    display: block;
    width: 100%;
    white-space: nowrap !important; /* alt satıra geçmesin */
    overflow: hidden; /* taşanı gizle */
    text-overflow: ellipsis; /* ... */
    word-break: keep-all; /* * dahil parçalama */
    overflow-wrap: normal !important; /* sarma kapalı */
    hyphens: none;
}
