/* _content/TestAppBlazor/Components/Layout/AdminLayout.razor.rz.scp.css */
.admin-layout[b-yaqf84mn5l] {
    display: flex;
    height: 100vh;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f9;
}

.sidebar[b-yaqf84mn5l] {
    width: 280px;
    background: linear-gradient(135deg, #1a7b7b 0%, #2d9d9d 100%);
    color: white;
    display: flex;
    flex-direction: column;
    transition: width 0.3s ease;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.main-content[b-yaqf84mn5l] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: #f0f2f5;
    /* Slightly darker for contrast with cards */
}

.top-row[b-yaqf84mn5l] {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    height: 70px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    color: #1a7b7b;
    /* Teal text for header */
    position: sticky;
    top: 0;
    z-index: 1020;
}

.top-row h5[b-yaqf84mn5l] {
    color: #1a7b7b !important;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sidebar[b-yaqf84mn5l] {
        width: 60px;
        /* Collapsed state for mobile */
    }

    .sidebar:hover[b-yaqf84mn5l] {
        width: 250px;
        /* Expand on hover */
    }
}
/* _content/TestAppBlazor/Components/Layout/LandingLayout.razor.rz.scp.css */
.landing-layout[b-qu0aonnx9b] {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: radial-gradient(circle at center, #4db8b8 0%, #2d9d9d 50%, #1a7b7b 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Animated background blobs - Adjusted for cleaner look */
.blob[b-qu0aonnx9b] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: float 20s infinite ease-in-out;
    pointer-events: none;
}

.landing-header[b-qu0aonnx9b] {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 10;
}

.landing-content[b-qu0aonnx9b] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 1;
}

.landing-footer[b-qu0aonnx9b] {
    position: absolute;
    bottom: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    z-index: 10;
    width: 100%;
}

.footer-links[b-qu0aonnx9b] {
    margin-top: 10px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.landing-footer a[b-qu0aonnx9b] {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.landing-footer a:hover[b-qu0aonnx9b] {
    color: white;
}

.landing-footer a[b-qu0aonnx9b]::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s;
}

.landing-footer a:hover[b-qu0aonnx9b]::after {
    width: 100%;
}

@media (max-width: 768px) {
    .landing-header[b-qu0aonnx9b] {
        top: 20px;
        right: 20px;
    }
}
/* _content/TestAppBlazor/Components/Layout/LoginLayout.razor.rz.scp.css */
.login-layout-root[b-mt6e51qivx] {
    background: #018e74;
    /* Updated Teal Background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.login-layout-root[b-mt6e51qivx]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(25deg);
    pointer-events: none;
}
/* _content/TestAppBlazor/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-ghj1qb3bkp] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-ghj1qb3bkp] {
    flex: 1;
}

.sidebar[b-ghj1qb3bkp] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-ghj1qb3bkp] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-ghj1qb3bkp]  a, .top-row[b-ghj1qb3bkp]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-ghj1qb3bkp]  a:hover, .top-row[b-ghj1qb3bkp]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-ghj1qb3bkp]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-ghj1qb3bkp] {
        justify-content: space-between;
    }

    .top-row[b-ghj1qb3bkp]  a, .top-row[b-ghj1qb3bkp]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-ghj1qb3bkp] {
        flex-direction: row;
    }

    .sidebar[b-ghj1qb3bkp] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-ghj1qb3bkp] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-ghj1qb3bkp]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-ghj1qb3bkp], article[b-ghj1qb3bkp] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-ghj1qb3bkp] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    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-ghj1qb3bkp] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/TestAppBlazor/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-1pnz7celn1] {
    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-1pnz7celn1] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-1pnz7celn1] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-1pnz7celn1] {
    font-size: 1.1rem;
}

.bi[b-1pnz7celn1] {
    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-1pnz7celn1] {
    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-1pnz7celn1] {
    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-1pnz7celn1] {
    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-1pnz7celn1] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-1pnz7celn1] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-1pnz7celn1] {
        padding-bottom: 1rem;
    }

    .nav-item[b-1pnz7celn1]  .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-1pnz7celn1]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-1pnz7celn1]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-1pnz7celn1] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-1pnz7celn1] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-1pnz7celn1] {
        display: none;
    }

    .nav-scrollable[b-1pnz7celn1] {
        /* 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/TestAppBlazor/Components/Pages/AdminLogin.razor.rz.scp.css */
/* Scoped styles for AdminLogin.razor - Restored Sliding Panel */
.login-container[b-f8ej23qdde] {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    width: 900px;
    max-width: 95%;
    min-height: 550px;
    display: block;
    margin: auto;
}

.form-container[b-f8ej23qdde] {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.sign-in-container[b-f8ej23qdde] {
    inset-inline-start: 0;
    width: 50%;
    z-index: 2;
}

.sign-up-container[b-f8ej23qdde] {
    inset-inline-start: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.login-container.right-panel-active .sign-in-container[b-f8ej23qdde] {
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.6s ease-in-out;
}

[dir="rtl"] .login-container.right-panel-active .sign-in-container[b-f8ej23qdde] {
    transform: translateX(-100%);
}

.login-container.right-panel-active .sign-up-container[b-f8ej23qdde] {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show-b-f8ej23qdde 0.6s;
}

[dir="rtl"] .login-container.right-panel-active .sign-up-container[b-f8ej23qdde] {
    transform: translateX(-100%);
}

@keyframes show-b-f8ej23qdde {

    0%,
    49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%,
    100% {
        opacity: 1;
        z-index: 5;
    }
}

.overlay-container[b-f8ej23qdde] {
    position: absolute;
    top: 0;
    inset-inline-start: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

.login-container.right-panel-active .overlay-container[b-f8ej23qdde] {
    transform: translateX(-100%);
}

[dir="rtl"] .login-container.right-panel-active .overlay-container[b-f8ej23qdde] {
    transform: translateX(100%);
}

.overlay[b-f8ej23qdde] {
    background: linear-gradient(135deg, #4db8b8 0%, #1a7b7b 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: white;
    position: relative;
    inset-inline-start: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.login-container.right-panel-active .overlay[b-f8ej23qdde] {
    transform: translateX(50%);
}

[dir="rtl"] .login-container.right-panel-active .overlay[b-f8ej23qdde] {
    transform: translateX(-50%);
}

.overlay-panel[b-f8ej23qdde] {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.overlay-left[b-f8ej23qdde] {
    transform: translateX(-20%);
}

[dir="rtl"] .overlay-left[b-f8ej23qdde] {
    transform: translateX(20%);
}

.login-container.right-panel-active .overlay-left[b-f8ej23qdde] {
    transform: translateX(0);
}

.overlay-right[b-f8ej23qdde] {
    inset-inline-end: 0;
    transform: translateX(0);
}

.login-container.right-panel-active .overlay-right[b-f8ej23qdde] {
    transform: translateX(20%);
}

[dir="rtl"] .login-container.right-panel-active .overlay-right[b-f8ej23qdde] {
    transform: translateX(-20%);
}

form[b-f8ej23qdde] {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    text-align: center;
}

h1[b-f8ej23qdde] {
    font-weight: bold;
    margin-bottom: 10px;
    color: #1a3d5c;
    font-size: 2rem;
}

.social-container[b-f8ej23qdde] {
    margin: 20px 0;
}

.social-container a[b-f8ej23qdde] {
    border: 1px solid #ddd;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 40px;
    width: 40px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.social-container a:hover[b-f8ej23qdde] {
    border-color: #2d9d9d;
    color: #2d9d9d;
}

span[b-f8ej23qdde] {
    font-size: 12px;
    color: #666;
    margin: 10px 0;
}

input[b-f8ej23qdde] {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
    border-radius: 8px;
    font-size: 14px;
}

input:focus[b-f8ej23qdde] {
    outline: none;
    background: white;
    box-shadow: 0 0 0 2px rgba(45, 157, 157, 0.2);
}

button[b-f8ej23qdde] {
    border-radius: 20px;
    border: 1px solid #1a7b7b;
    background: #1a7b7b;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    cursor: pointer;
    margin-top: 10px;
    width: auto;
}

button:active[b-f8ej23qdde] {
    transform: scale(0.95);
}

button:focus[b-f8ej23qdde] {
    outline: none;
}

button.ghost[b-f8ej23qdde] {
    background: transparent;
    border-color: white;
}

.overlay-panel h1[b-f8ej23qdde] {
    color: white;
}

.overlay-panel p[b-f8ej23qdde] {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
}

.logo[b-f8ej23qdde] {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}
/* _content/TestAppBlazor/Components/Pages/ForgotPassword.razor.rz.scp.css */
/* Scoped styles for ForgotPassword.razor - Identical to UserLogin.razor CSS */
.login-container[b-b7n4xfnw3o] {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    width: 900px;
    max-width: 95%;
    min-height: 550px;
    display: block;
    margin: auto;
}

.form-container[b-b7n4xfnw3o] {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.sign-in-container[b-b7n4xfnw3o] {
    inset-inline-start: 0;
    width: 50%;
    z-index: 2;
}

.sign-up-container[b-b7n4xfnw3o] {
    inset-inline-start: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.login-container.right-panel-active .sign-in-container[b-b7n4xfnw3o] {
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.6s ease-in-out;
}

[dir="rtl"] .login-container.right-panel-active .sign-in-container[b-b7n4xfnw3o] {
    transform: translateX(-100%);
}

.login-container.right-panel-active .sign-up-container[b-b7n4xfnw3o] {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show-b-b7n4xfnw3o 0.6s;
}

[dir="rtl"] .login-container.right-panel-active .sign-up-container[b-b7n4xfnw3o] {
    transform: translateX(-100%);
}

@keyframes show-b-b7n4xfnw3o {
    0%, 49.99% {
        opacity: 0;
        z-index: 1;
    }
    50%, 100% {
        opacity: 1;
        z-index: 5;
    }
}

.overlay-container[b-b7n4xfnw3o] {
    position: absolute;
    top: 0;
    inset-inline-start: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

.login-container.right-panel-active .overlay-container[b-b7n4xfnw3o] {
    transform: translateX(-100%);
}

[dir="rtl"] .login-container.right-panel-active .overlay-container[b-b7n4xfnw3o] {
    transform: translateX(100%);
}

.overlay[b-b7n4xfnw3o] {
    background: linear-gradient(135deg, #1a7b7b 0%, #2d9d9d 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: white;
    position: relative;
    inset-inline-start: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.login-container.right-panel-active .overlay[b-b7n4xfnw3o] {
    transform: translateX(50%);
}

[dir="rtl"] .login-container.right-panel-active .overlay[b-b7n4xfnw3o] {
    transform: translateX(-50%);
}

.overlay-panel[b-b7n4xfnw3o] {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.overlay-left[b-b7n4xfnw3o] {
    transform: translateX(-20%);
}

[dir="rtl"] .overlay-left[b-b7n4xfnw3o] {
    transform: translateX(20%);
}

.login-container.right-panel-active .overlay-left[b-b7n4xfnw3o] {
    transform: translateX(0);
}

.overlay-right[b-b7n4xfnw3o] {
    inset-inline-end: 0;
    transform: translateX(0);
}

.login-container.right-panel-active .overlay-right[b-b7n4xfnw3o] {
    transform: translateX(20%);
}

[dir="rtl"] .login-container.right-panel-active .overlay-right[b-b7n4xfnw3o] {
    transform: translateX(-20%);
}

form[b-b7n4xfnw3o] {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    text-align: center;
}

h1[b-b7n4xfnw3o] {
    font-weight: bold;
    margin-bottom: 10px;
    color: #1a3d5c;
    font-size: 2rem;
}

span[b-b7n4xfnw3o] {
    font-size: 12px;
    color: #666;
    margin: 10px 0;
}

input[b-b7n4xfnw3o] {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
    border-radius: 8px;
    font-size: 14px;
}

input:focus[b-b7n4xfnw3o] {
    outline: none;
    background: white;
    box-shadow: 0 0 0 2px rgba(45, 157, 157, 0.2);
}

button[b-b7n4xfnw3o] {
    border-radius: 20px;
    border: 1px solid #1a7b7b;
    background: #1a7b7b;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    cursor: pointer;
    margin-top: 10px;
    width: auto;
}

button:active[b-b7n4xfnw3o] {
    transform: scale(0.95);
}

button:focus[b-b7n4xfnw3o] {
    outline: none;
}

button.ghost[b-b7n4xfnw3o] {
    background: transparent;
    border-color: white;
}

.overlay-panel h1[b-b7n4xfnw3o] {
    color: white;
}

.overlay-panel p[b-b7n4xfnw3o] {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
}

.logo[b-b7n4xfnw3o] {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}
/* _content/TestAppBlazor/Components/Pages/Home.razor.rz.scp.css */
.container[b-4bciujsusy] {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    padding: 60px 20px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-container[b-4bciujsusy] {
    margin-bottom: 50px;
    animation: fadeInDown-b-4bciujsusy 0.8s ease-out;
}

.logo-box[b-4bciujsusy] {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.main-logo[b-4bciujsusy] {
    width: 90px;
    height: 90px;
}

h1[b-4bciujsusy] {
    color: #1a3d5c;
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.subtitle[b-4bciujsusy] {
    color: rgba(26, 61, 92, 0.7);
    font-size: 19px;
    font-weight: 500;
}

.cards-container[b-4bciujsusy] {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card[b-4bciujsusy] {
    width: 240px;
    height: 300px;
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 30px 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.card.company[b-4bciujsusy] {
    background: #ffffff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.card.user[b-4bciujsusy] {
    background: #f0fdfa;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.card.admin[b-4bciujsusy] {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
}

.card:hover[b-4bciujsusy] {
    transform: translateY(-15px);
}

.card.company:hover[b-4bciujsusy] {
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

.card.user:hover[b-4bciujsusy] {
    box-shadow: 0 35px 70px rgba(22, 150, 157, 0.15);
}

.card.admin:hover[b-4bciujsusy] {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.1);
}

.icon-section[b-4bciujsusy] {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.03);
}

.card.admin .icon-section[b-4bciujsusy] {
    background: rgba(255, 255, 255, 0.1);
}

.card-icon[b-4bciujsusy] {
    width: 40px;
    height: 40px;
}

.card.company .card-icon[b-4bciujsusy] {
    color: #8fa0ac;
}

.card.user .card-icon[b-4bciujsusy] {
    color: #16969d;
}

.card-title[b-4bciujsusy] {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.card.company .card-title[b-4bciujsusy] {
    color: #435e72;
}

.card.user .card-title[b-4bciujsusy] {
    color: #16969d;
}

.card.admin .card-title[b-4bciujsusy] {
    color: #ffffff;
}

.arrow-btn[b-4bciujsusy] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e1f5f5;
    color: #4db8b8;
    font-size: 20px;
    transition: all 0.3s;
}

.card.admin .arrow-btn[b-4bciujsusy] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.card:hover .arrow-btn[b-4bciujsusy] {
    transform: scale(1.1);
}

@keyframes fadeInDown-b-4bciujsusy {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    h1[b-4bciujsusy] {
        font-size: 38px;
    }

    .card[b-4bciujsusy] {
        width: 100%;
        max-width: 280px;
        height: 250px;
    }
}
/* _content/TestAppBlazor/Components/Pages/MobileDashboard.razor.rz.scp.css */
/* WIZARD & PREPARATION UI */
.wizard-container[b-gzjf8qmvtg] {
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.wizard-title[b-gzjf8qmvtg] {
    font-size: 2rem;
    letter-spacing: -0.02em;
}

/* Stepper */
.wizard-stepper[b-gzjf8qmvtg] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}

.wizard-step[b-gzjf8qmvtg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
    cursor: pointer;
    transition: var(--trans);
    min-width: 80px;
}

.step-num[b-gzjf8qmvtg] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--muted);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-label[b-gzjf8qmvtg] {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--trans);
}

.wizard-step.active .step-num[b-gzjf8qmvtg] {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(26, 123, 123, 0.3);
}

.wizard-step.active .step-label[b-gzjf8qmvtg] {
    color: var(--teal);
}

.wizard-step.completed .step-num[b-gzjf8qmvtg] {
    background: #e6f5f6;
    border-color: var(--teal);
    color: var(--teal);
}

.step-line[b-gzjf8qmvtg] {
    flex: 1;
    height: 3px;
    background: var(--border);
    margin-top: -30px; /* Align with circles */
    transition: all 0.6s ease;
    position: relative;
    z-index: 1;
}

.step-line.active[b-gzjf8qmvtg] {
    background: var(--teal);
}

/* Template Select Cards (Redesigned - Horizontal) */
.template-select-card[b-gzjf8qmvtg] {
    background: #fff;
    border-radius: 18px;
    padding: 12px;
    border: 1px solid #f1f5f9;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-bottom: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.tpl-card-main[b-gzjf8qmvtg] {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    align-items: center;
    gap: 16px;
    position: relative;
    width: 100%;
}

.tpl-icon-box[b-gzjf8qmvtg] {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    background: linear-gradient(135deg, #16969d, #0d7b82);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.tpl-doc-preview[b-gzjf8qmvtg] {
    width: 50px;
    height: 65px;
    background: #fff;
    border-radius: 4px;
    position: relative;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.doc-line[b-gzjf8qmvtg] {
    height: 2px;
    background: #e2e8f0;
    width: 100%;
}
.doc-line:nth-child(1)[b-gzjf8qmvtg] { width: 70%; }
.doc-line:nth-child(2)[b-gzjf8qmvtg] { width: 100%; }
.doc-line:nth-child(3)[b-gzjf8qmvtg] { width: 40%; }

.doc-label[b-gzjf8qmvtg] {
    position: absolute;
    top: 8px;
    left: 4px;
    right: 4px;
    font-size: 8px;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    pointer-events: none;
}

.tpl-content[b-gzjf8qmvtg] {
    flex: 1;
}

.tpl-title[b-gzjf8qmvtg] {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.tpl-desc[b-gzjf8qmvtg] {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
}

.tpl-duration-info[b-gzjf8qmvtg] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 15px;
    border-left: 1px dashed #e2e8f0;
    min-width: 80px;
}

.tpl-duration-icon[b-gzjf8qmvtg] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.dur-icon-wrap[b-gzjf8qmvtg] {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dur-label[b-gzjf8qmvtg] {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0d7b82;
    text-transform: uppercase;
}

.dur-value[b-gzjf8qmvtg] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
}

.dur-icon[b-gzjf8qmvtg] {
    display: none; /* Replaced by .dur-icon-wrap in the new structure */
}

.template-select-card:hover[b-gzjf8qmvtg] {
    transform: translateY(-3px);
    border-color: var(--teal-lt);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.template-select-card.active[b-gzjf8qmvtg] {
    border-color: var(--teal);
    background: #fff;
    box-shadow: 0 10px 30px rgba(26, 123, 123, 0.1);
}

.active-check-v2[b-gzjf8qmvtg] {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 1.5rem;
    color: var(--teal);
    background: #fff;
    border-radius: 50%;
    line-height: 1;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* RTL Support for Template Cards */
[dir="rtl"] .tpl-duration-info[b-gzjf8qmvtg] {
    border-left: none;
    border-right: 1px dashed #e2e8f0;
    padding-left: 0;
    padding-right: 15px;
}

[dir="rtl"] .active-check-v2[b-gzjf8qmvtg] {
    right: auto;
    left: -8px;
}

/* Phone Input Customization */
[b-gzjf8qmvtg] .phone-input-container .form-control {
    border-radius: 12px !important;
    padding: 12px 16px !important;
    border: 1px solid var(--border) !important;
    height: 58px !important;
}

/* File Upload */
.prep-file-upload[b-gzjf8qmvtg] {
    transition: var(--trans);
    border: 2px dashed #cbd5e1;
    background: #f8fafc;
}

.prep-file-upload:hover[b-gzjf8qmvtg] {
    border-color: var(--teal);
    background: #f0f7f7;
}

.prep-file-upload.loading[b-gzjf8qmvtg] {
    opacity: 0.6;
    pointer-events: none;
}

.prep-file-input[b-gzjf8qmvtg] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    opacity: 0;
    cursor: pointer;
}

/* Package Cards */
.prep-pkg-card[b-gzjf8qmvtg] {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    border: 2px solid #f1f5f9;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    height: 100%;
}

.prep-pkg-card:hover[b-gzjf8qmvtg] {
    transform: translateY(-5px);
    border-color: var(--teal-lt);
}

.prep-pkg-card.active[b-gzjf8qmvtg] {
    border-color: var(--teal);
    background: #fdfdfd;
    box-shadow: 0 15px 40px rgba(26, 123, 123, 0.1);
}

.required[b-gzjf8qmvtg]::after {
    content: " *";
    color: #ef4444; /* Standard red */
    font-weight: 800;
}

.pkg-name[b-gzjf8qmvtg] { color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; }
.pkg-price[b-gzjf8qmvtg] { margin: 15px 0; }

/* Integrated Summary Bar */
.prep-summary-bar[b-gzjf8qmvtg] {
    border: 1px solid #e2e8f0 !important;
}

.border-end-md[b-gzjf8qmvtg] {
    border-right: 1px solid #e2e8f0;
}

@media (max-width: 767.98px) {
    .border-end-md[b-gzjf8qmvtg] { border-right: none; border-bottom: 1px solid #e2e8f0; padding-bottom: 20px; margin-bottom: 20px; }
}

.summary-line[b-gzjf8qmvtg] {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
}

.check-item-v2[b-gzjf8qmvtg] {
    display: flex;
    align-items: center;
    color: var(--muted);
    font-weight: 600;
}

.check-item-v2.done[b-gzjf8qmvtg] {
    color: var(--teal);
}

/* Animations */
.animate-fade-up[b-gzjf8qmvtg] {
    animation: fadeUp-b-gzjf8qmvtg 0.5s ease-out forwards;
}

@keyframes fadeUp-b-gzjf8qmvtg {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-bounce[b-gzjf8qmvtg] {
    animation: bounceSign-b-gzjf8qmvtg 2s infinite;
}

@keyframes bounceSign-b-gzjf8qmvtg {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-5px);}
    60% {transform: translateY(-3px);}
}

/* Dashboard Mode Switching Overrides */
.dashboard-container[b-gzjf8qmvtg] {
    transition: opacity 0.5s ease;
}

.fade-in[b-gzjf8qmvtg] {
    animation: fadeIn-b-gzjf8qmvtg 0.6s ease-in-out;
}

@keyframes fadeIn-b-gzjf8qmvtg {
    from { opacity: 0; }
    to { opacity: 1; }
}

:root[b-gzjf8qmvtg] {
    --teal: #1a7b7b;
    --teal-lt: rgba(26, 123, 123, 0.1);
    --ink: #1e293b;
    --muted: #64748b;
    --border: #e2e8f0;
    --green: #10b981;
    --amber: #f59e0b;
    --trans: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Status Colors from User */
    --status-draft: #0078d4;
    --status-pending: #FCA300;
    --status-rejected: #FF7070;
    --status-ended: #B2BEB5;
    --status-active: #2bbd81; /* buttonGreenTwo equivalent */
}

.common-teal-text[b-gzjf8qmvtg] { color: var(--teal); }

/* PROTOTYPE HEADER */
.dashboard-header-nav[b-gzjf8qmvtg] {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 70px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 0 40px;
}
.header-inner[b-gzjf8qmvtg] {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-center[b-gzjf8qmvtg] {
    display: flex;
    gap: 32px;
}
.nav-link[b-gzjf8qmvtg] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink) !important;
    transition: var(--trans);
    text-decoration: none;
}
.nav-link:hover[b-gzjf8qmvtg] { color: var(--teal) !important; }

.nav-right[b-gzjf8qmvtg] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-ghost-nav[b-gzjf8qmvtg] {
    padding: 8px 24px;
    border-radius: 100px;
    border: 1px solid var(--teal);
    color: var(--teal);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    background: transparent;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-ghost-nav:hover[b-gzjf8qmvtg] {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 4px 15px rgba(26, 123, 123, 0.2);
}

/* MOBILE DASHBOARD SECTION */
.mobile-dashboard-section[b-gzjf8qmvtg] {
    min-height: 100vh;
    padding: 120px 40px 60px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.dashboard-container[b-gzjf8qmvtg] {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.reveal[b-gzjf8qmvtg] {
    animation: fadeInUp-b-gzjf8qmvtg 0.8s ease-out forwards;
}
@keyframes fadeInUp-b-gzjf8qmvtg {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Blobs */
.blob[b-gzjf8qmvtg] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.15;
}
.blob-1[b-gzjf8qmvtg] { top: 10%; right: -5%; width: 400px; height: 400px; background: var(--teal); }
.blob-2[b-gzjf8qmvtg] { bottom: 10%; left: -5%; width: 300px; height: 300px; background: var(--teal-lt); }
.blob-3[b-gzjf8qmvtg] { top: 40%; left: 30%; width: 250px; height: 250px; background: var(--amber); opacity: 0.05; }
.blob-4[b-gzjf8qmvtg] { top: 20%; right: 20%; width: 200px; height: 200px; background: var(--green); opacity: 0.05; }

.dashboard-hero[b-gzjf8qmvtg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
}
.hero-left[b-gzjf8qmvtg] { flex: 1; }
/* Hero App Buttons Refactor */
.app-assets-row[b-gzjf8qmvtg] {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.store-btns-horizontal[b-gzjf8qmvtg] {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
}

.store-btn[b-gzjf8qmvtg] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-radius: 12px;
    transition: var(--trans);
    text-decoration: none;
    color: #fff;
    width: fit-content;
}

.store-btn svg[b-gzjf8qmvtg] {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.store-btn-label[b-gzjf8qmvtg] {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
    opacity: 0.7;
}

.store-btn-name[b-gzjf8qmvtg] {
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.2;
}

.store-btn.dark[b-gzjf8qmvtg] {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.store-btn.dark:hover[b-gzjf8qmvtg] {
    background: #1e293b;
    border-color: var(--teal);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Hero Circle Background & Rings */
.hero-circle-wrap[b-gzjf8qmvtg] {
    position: relative;
    width: 440px;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    scale: 0.85; /* Dashboard hero is slightly more compact */
}

@keyframes spinRing-b-gzjf8qmvtg { to { transform: rotate(360deg); } }

.ring[b-gzjf8qmvtg] {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(26, 123, 123, 0.1);
    pointer-events: none;
}

.ring-1[b-gzjf8qmvtg] {
    width: 420px;
    height: 420px;
    animation: spinRing-b-gzjf8qmvtg 25s linear infinite;
}

.ring-2[b-gzjf8qmvtg] {
    width: 360px;
    height: 360px;
    border-style: dashed;
    border-color: rgba(26, 123, 123, 0.08);
    animation: spinRing-b-gzjf8qmvtg 35s linear infinite reverse;
}

.hero-circle[b-gzjf8qmvtg] {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--teal), #0f767e);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    box-shadow: 0 20px 60px rgba(26, 123, 123, 0.3);
}

/* Mockup Adjustment for Circle */
.app-mockup-container[b-gzjf8qmvtg] {
    position: relative;
    height: 300px;
    width: 220px;
    display: flex;
    justify-content: center;
    margin: 0;
    z-index: 10;
}

.mini-phone-frame[b-gzjf8qmvtg] {
    width: 140px;
    height: 300px;
    background: #0f172a;
    border-radius: 22px;
    padding: 6px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 0 1.5px #334155;
    position: absolute;
    overflow: hidden;
    transition: var(--trans);
}

.frame-back[b-gzjf8qmvtg] {
    transform: rotate(-10deg) translateX(-30px);
    z-index: 10;
}

.frame-front[b-gzjf8qmvtg] {
    transform: rotate(5deg) translateX(40px) translateY(-10px);
    z-index: 11;
    background: #1e293b;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 0 1.5px #475569;
}

.frame-inner[b-gzjf8qmvtg] {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: white;
}

.frame-inner img[b-gzjf8qmvtg] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hide old iphone frame if needed */
.iphone-frame-hero[b-gzjf8qmvtg] { display: none; }

/* Floating Badges */
.float-badge[b-gzjf8qmvtg] {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatBadge 5s ease-in-out infinite;
    z-index: 10;
}

.fb-tl[b-gzjf8qmvtg] { top: 30px; left: -20px; animation-delay: 0.2s; }
.fb-br[b-gzjf8qmvtg] { bottom: 40px; right: -20px; animation-delay: 0.7s; }

.fb-icon-circle[b-gzjf8qmvtg] {
    width: 36px;
    height: 36px;
    background: var(--teal-lt);
    color: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.fb-text strong[b-gzjf8qmvtg] { display: block; font-size: 0.85rem; color: var(--ink); }
.fb-text span[b-gzjf8qmvtg] { font-size: 0.7rem; color: var(--muted); }

/* Decorative Icon Pills */
.deco-icon[b-gzjf8qmvtg] {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    font-size: 1.25rem;
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 8;
}

.di-1[b-gzjf8qmvtg] { top: 60px; right: -10px; color: #ea4335; animation-delay: 0s; } /* Google Redish */
.di-2[b-gzjf8qmvtg] { bottom: 100px; left: -30px; color: #4a154b; animation-delay: 1.2s; } /* Slack */
.di-3[b-gzjf8qmvtg] { top: 160px; left: -50px; color: #e4405f; animation-delay: 0.5s; } /* Instagram */
.di-4[b-gzjf8qmvtg] { bottom: 20px; right: 50px; color: #1da1f2; animation-delay: 0.8s; } /* Twitter/LinkedIn blueish */

/* iPhone Overlap */
.hero-iphone-overlay[b-gzjf8qmvtg] {
    position: absolute;
    bottom: -10px;
    right: 20px;
    width: 140px;
    z-index: 12;
    transform: rotate(5deg);
    animation: floatBadge 6s ease-in-out infinite reverse;
}

.hero-iphone-overlay img[b-gzjf8qmvtg] {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

/* MAIN CONTENT */
.dashboard-main-content[b-gzjf8qmvtg] {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    background: #f8fafc; /* Grey background */
    padding: 60px 40px;
    border-radius: 40px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 50px rgba(0,0,0,0.02);
}
.section-title-area[b-gzjf8qmvtg] { text-align: center; margin-bottom: 40px; }
.dashboard-title[b-gzjf8qmvtg] {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0;
}

/* SEARCH & TABS ROW */
.search-tabs-row[b-gzjf8qmvtg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-bottom: 60px;
}

.common-tabs[b-gzjf8qmvtg] {
    background: none;
    padding: 0;
    border: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    justify-content: center; /* Aligned to center as requested */
    margin-bottom: 30px;
}
.common-tabs .nav-item[b-gzjf8qmvtg] { margin: 0; }
.common-tabs .nav-link[b-gzjf8qmvtg] {
    border: 0 !important;
    background: #fff !important;
    padding: 10px 24px !important;
    border-radius: 100px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: var(--muted) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
    transition: all 0.3s ease !important;
    display: flex;
    align-items: center;
}
.common-tabs .nav-link.active[b-gzjf8qmvtg] {
    background: var(--teal) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(26, 123, 123, 0.2) !important;
}
.common-tabs .badge[b-gzjf8qmvtg] {
    margin-left: 8px;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 100px;
}
.common-tabs .nav-link.active .badge[b-gzjf8qmvtg] { background: #fff; color: var(--teal); }
.common-tabs .nav-link:not(.active) .badge[b-gzjf8qmvtg] { background: #f1f5f9; color: var(--muted); }

.common-search-box .input-group[b-gzjf8qmvtg] {
    width: 100%;
    max-width: 500px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.common-search-box .input-group-text[b-gzjf8qmvtg] {
    background: none;
    border: none;
    color: var(--muted);
    padding-left: 20px;
}
.common-search-box .form-control[b-gzjf8qmvtg] {
    border: none;
    padding: 16px;
    font-weight: 600;
    box-shadow: none !important;
}
.common-search-box .btn-primary[b-gzjf8qmvtg] {
    background: var(--teal) !important;
    border: none !important;
    padding: 0 40px !important;
    font-weight: 800 !important;
}

/* DOCUMENT GRID & CARD V2 */
.document-grid[b-gzjf8qmvtg] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 80px;
    width: 100%;
}

@media (max-width: 1200px) { .document-grid[b-gzjf8qmvtg] { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .document-grid[b-gzjf8qmvtg] { grid-template-columns: 1fr; } }

.document-card-prototype[b-gzjf8qmvtg] {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); /* Softer shadow as requested */
    border: 1px solid #f1f5f9;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    min-height: 280px;
    position: relative;
    overflow: hidden; /* Prevent pop-out */
}

.document-card-prototype:hover[b-gzjf8qmvtg] {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* Header V2 */
.card-header-v2[b-gzjf8qmvtg] {
    margin-bottom: 24px;
}

.doc-title-v2[b-gzjf8qmvtg] {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.doc-date-v2[b-gzjf8qmvtg] {
    font-size: 0.85rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-weight: 600;
}
.doc-date-v2 i[b-gzjf8qmvtg] { color: var(--teal); }

.doc-id-v2[b-gzjf8qmvtg] {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 600;
}

/* Parties V2 */
.card-parties-v2[b-gzjf8qmvtg] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
}

.party-row-v2[b-gzjf8qmvtg] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.party-avatar-v2[b-gzjf8qmvtg] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--muted);
    flex-shrink: 0;
}

.party-avatar-v2.active[b-gzjf8qmvtg] {
    background: #e6f5f6;
    color: var(--teal);
    border: 1px solid rgba(22, 150, 157, 0.1);
}

.party-avatar-v2.secondary[b-gzjf8qmvtg] {
    background: #f1f5f9;
    color: var(--muted);
}

.party-signature-v2[b-gzjf8qmvtg] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.sig-placeholder[b-gzjf8qmvtg] {
    font-size: 0.75rem;
    color: var(--teal);
    font-weight: 700;
    margin: 0;
    padding: 4px 10px;
    background: var(--teal-lt);
    border-radius: 100px;
}
.sig-placeholder.secondary[b-gzjf8qmvtg] { color: var(--muted); background: #f1f5f9; }

.real-sig-v2[b-gzjf8qmvtg] {
    max-width: 100px;
    max-height: 35px;
    object-fit: contain;
    filter: brightness(0.9); /* Subtle professional look */
}

.real-sig-v2.secondary[b-gzjf8qmvtg] {
    filter: grayscale(1) opacity(0.7);
}

.text-sig-v2[b-gzjf8qmvtg] {
    font-family: 'Dancing Script', 'Segoe UI', cursive;
    font-size: 1.1rem;
    color: var(--teal);
    font-weight: 600;
    font-style: italic;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.text-sig-v2.secondary[b-gzjf8qmvtg] {
    color: var(--muted);
    font-size: 0.95rem;
}

.proto-sig[b-gzjf8qmvtg] {
    width: 60px;
    height: 25px;
    opacity: 0.6;
    color: var(--ink);
}
.proto-sig.secondary[b-gzjf8qmvtg] { color: var(--muted); }

/* REFINED CARD BODY V3 - ROW BASED */
.card-body-v3[b-gzjf8qmvtg] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.party-row-v3[b-gzjf8qmvtg] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.party-info-v3[b-gzjf8qmvtg] {
    width: 40px;
    flex-shrink: 0;
}

.party-signature-v2[b-gzjf8qmvtg] {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 10px;
    overflow: hidden; /* Prevent long names from stretching card */
}

.action-slot-v3[b-gzjf8qmvtg] {
    width: 80px; /* Reduced from 100px to avoid overflow */
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
}

/* RTL handling for action-slot */
[dir="rtl"] .action-slot-v3[b-gzjf8qmvtg] {
    justify-content: flex-start;
}

[dir="rtl"] .border-end-md[b-gzjf8qmvtg] {
    border-right: none;
    border-left: 1px solid #e2e8f0;
}

.status-btn-v2[b-gzjf8qmvtg] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 32px; /* Adaptive height */
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    line-height: 1.1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Status variants */
.status-active[b-gzjf8qmvtg] { background: linear-gradient(135deg, #2bbd81, #1a7b7b); }
.status-pending[b-gzjf8qmvtg] { background: linear-gradient(135deg, #FCA300, #E69500); }
.status-rejected[b-gzjf8qmvtg] { background: linear-gradient(135deg, #FF7070, #EE4F4F); }
.status-draft[b-gzjf8qmvtg] { background: linear-gradient(135deg, #0078d4, #005a9e); }
.status-ended[b-gzjf8qmvtg] { background: linear-gradient(135deg, #B2BEB5, #919ea0); color: var(--ink); }

.btn-delete-doc-mini-v2[b-gzjf8qmvtg] {
    background: #fef2f2;
    border: 1px solid #fee2e2;
    color: #ef4444;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.1rem;
}

.btn-delete-doc-mini-v2:hover[b-gzjf8qmvtg] {
    background: #fee2e2;
    transform: scale(1.05);
}

/* Cleanup old body styles */
.card-body-v2[b-gzjf8qmvtg], .status-col-v2[b-gzjf8qmvtg], .parties-stack-v2[b-gzjf8qmvtg], .party-mini-row-v2[b-gzjf8qmvtg], .card-footer-actions[b-gzjf8qmvtg] { display: none; }

/* Hero Content Buttons */
.hero-app-buttons[b-gzjf8qmvtg] {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.hero-app-buttons img[b-gzjf8qmvtg] {
    height: 42px;
    width: auto;
    transition: transform 0.2s;
    cursor: pointer;
}

.hero-app-buttons img:hover[b-gzjf8qmvtg] {
    transform: scale(1.05);
}

/* View Document Mode Styling */
.view-document-mode[b-gzjf8qmvtg] {
    padding: 0 10px;
    margin-bottom: 50px;
}

.shadow-premium[b-gzjf8qmvtg] {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.btn-pill-back[b-gzjf8qmvtg] {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
}

.btn-pill-back:hover[b-gzjf8qmvtg] {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #1a7b7b;
    transform: translateX(-3px);
}

.qr-preview-area[b-gzjf8qmvtg] {
    padding: 1.5rem;
    border: 1px dashed #cbd5e1;
    transition: all 0.3s ease;
}

.qr-preview-area:hover[b-gzjf8qmvtg] {
    border-color: #1a7b7b;
    background: #f0fdfa !important;
}

.ls-1[b-gzjf8qmvtg] {
    letter-spacing: 0.1em;
}

.download-contract-btn[b-gzjf8qmvtg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #1a7b7b;
    color: #1a7b7b;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-contract-btn:hover[b-gzjf8qmvtg] {
    background: #1a7b7b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 123, 123, 0.2);
}

.signature-display[b-gzjf8qmvtg] {
    border: 1px solid #f1f5f9;
}

.sig-img[b-gzjf8qmvtg] {
    max-height: 80px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.bg-warning-subtle[b-gzjf8qmvtg] { background-color: #fef9c3 !important; }
.bg-success-subtle[b-gzjf8qmvtg] { background-color: #dcfce7 !important; }
.bg-danger-subtle[b-gzjf8qmvtg] { background-color: #fee2e2 !important; }

/* AnswerPreview Override for View Mode */
.view-document-mode .answer-preview .card[b-gzjf8qmvtg] {
    border: none !important;
}

@media (max-width: 991px) {
    .view-document-mode .col-lg-4[b-gzjf8qmvtg], 
    .view-document-mode .col-lg-8[b-gzjf8qmvtg] {
        width: 100%;
    }
}

/* COMMON PAGINATION - COMPACT DESIGN */
.common-pagination-wrapper.compact-design[b-gzjf8qmvtg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 30px;
    margin-top: 40px;
}

.entries-selector[b-gzjf8qmvtg] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 600;
}

.entries-dropdown[b-gzjf8qmvtg] {
    width: 80px;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    background-color: #fff;
}

.pagination-controls-compact[b-gzjf8qmvtg] {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 12px;
}

.btn-page-nav[b-gzjf8qmvtg] {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-page-nav:hover:not(.disabled)[b-gzjf8qmvtg] {
    background: #fff;
    color: var(--teal);
}

.btn-page-nav.disabled[b-gzjf8qmvtg] {
    opacity: 0.3;
    cursor: not-allowed;
}

.current-page-indicator[b-gzjf8qmvtg] {
    background: var(--teal);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(26, 123, 123, 0.3);
}

/* PROTOTYPE FOOTER */
.dashboard-footer-proto[b-gzjf8qmvtg] {
    background: #0f172a;
    color: #fff;
    padding: 100px 40px 60px;
    position: relative;
    z-index: 2;
}
.footer-inner[b-gzjf8qmvtg] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 100px;
    margin-bottom: 80px;
}
.footer-branding p[b-gzjf8qmvtg] {
    font-size: 1rem;
    color: #94a3b8;
    margin: 32px 0;
    line-height: 1.7;
    max-width: 400px;
}
.footer-socials-row[b-gzjf8qmvtg] {
    display: flex;
    gap: 24px;
    font-size: 1.5rem;
    color: #64748b;
}
.footer-socials-row i:hover[b-gzjf8qmvtg] { color: var(--teal); cursor: pointer; transform: translateY(-3px); }
.footer-links-group h4[b-gzjf8qmvtg], .footer-contact-group h4[b-gzjf8qmvtg] {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    color: #fff;
    text-transform: uppercase;
}
.footer-links-group a[b-gzjf8qmvtg], .footer-contact-group span[b-gzjf8qmvtg] {
    display: block;
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 20px;
    text-decoration: none;
    transition: 0.3s;
}
.footer-links-group a:hover[b-gzjf8qmvtg] { color: #fff; padding-left: 5px; }
.footer-copy[b-gzjf8qmvtg] {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    font-size: 0.9rem;
    color: #475569;
}

/* States & Placeholders */
.loading-placeholder[b-gzjf8qmvtg], .empty-state[b-gzjf8qmvtg], .error-state[b-gzjf8qmvtg] {
    grid-column: 1 / -1;
    text-align: center;
    padding: 120px 40px;
    background: #f8fafc;
    border-radius: 32px;
    border: 2px dashed #e2e8f0;
}

.spinner[b-gzjf8qmvtg] {
    width: 64px;
    height: 64px;
    border: 6px solid var(--teal-lt);
    border-top-color: var(--teal);
    border-radius: 50%;
    animation: spin-b-gzjf8qmvtg 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    margin: 0 auto 32px;
}
@keyframes spin-b-gzjf8qmvtg { to { transform: rotate(360deg); } }

.empty-icon[b-gzjf8qmvtg], .error-state i[b-gzjf8qmvtg] {
    font-size: 6rem;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.empty-state h3[b-gzjf8qmvtg] {
    font-size: 2rem;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 20px;
}
.empty-state p[b-gzjf8qmvtg], .error-state p[b-gzjf8qmvtg] {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.error-state i[b-gzjf8qmvtg] { color: #ef4444; }
.btn-retry[b-gzjf8qmvtg] {
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 16px 48px;
    border-radius: 100px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--trans);
}
.btn-retry:hover[b-gzjf8qmvtg] { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }

/* Responsive adjustments */
@media (max-width: 992px) {
    .dashboard-hero[b-gzjf8qmvtg] { flex-direction: column; text-align: center; }
    .hero-desc[b-gzjf8qmvtg] { margin: 24px auto; }
    .hero-stats-badge[b-gzjf8qmvtg] { margin: 0 auto 30px; }
    .footer-inner[b-gzjf8qmvtg] { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .footer-branding p[b-gzjf8qmvtg] { margin: 24px auto; }
    .footer-socials-row[b-gzjf8qmvtg] { justify-content: center; }
}
/* DESIGNER ALERT STYLES */
.designer-modal-backdrop[b-gzjf8qmvtg] {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1100;
}

.designer-alert-card[b-gzjf8qmvtg] {
    border: none;
    border-radius: 40px;
    padding: 60px 40px 40px;
    text-align: center;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.15);
}

.designer-alert-icon-wrap[b-gzjf8qmvtg] {
    width: 80px;
    height: 80px;
    background: #fff5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
}

.designer-alert-icon-wrap i[b-gzjf8qmvtg] {
    font-size: 2.5rem;
    color: #ff4d4d;
}

/* Pulsing effect for icon */
.designer-alert-icon-wrap[b-gzjf8qmvtg]::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #ff4d4d;
    opacity: 0.1;
    animation: designerPulse-b-gzjf8qmvtg 2s infinite;
}

@keyframes designerPulse-b-gzjf8qmvtg {
    0% { transform: scale(1); opacity: 0.2; }
    100% { transform: scale(1.5); opacity: 0; }
}

.designer-alert-title[b-gzjf8qmvtg] {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.designer-alert-desc[b-gzjf8qmvtg] {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.designer-alert-footer[b-gzjf8qmvtg] {
    display: flex;
    gap: 20px;
}

.designer-btn-cancel[b-gzjf8qmvtg] {
    flex: 1;
    background: #f1f5f9;
    color: #64748b;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    transition: var(--trans);
}

.designer-btn-confirm[b-gzjf8qmvtg] {
    flex: 1;
    background: #ff4d4d;
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    transition: var(--trans);
    box-shadow: 0 8px 20px rgba(255, 77, 77, 0.3);
}

.designer-btn-confirm.teal[b-gzjf8qmvtg] {
    background: var(--teal);
    box-shadow: 0 8px 20px rgba(26, 123, 123, 0.3);
}

.designer-btn-confirm:hover[b-gzjf8qmvtg], .designer-btn-cancel:hover[b-gzjf8qmvtg] {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* Signature Drawing Pad */
.prep-sig-pad-wrapper[b-gzjf8qmvtg] {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 30px auto 0;
}

#prep-signature-canvas[b-gzjf8qmvtg], #builder-signature-canvas[b-gzjf8qmvtg] {
    background: #ffffff;
    border: 2px dashed #cbd5e0;
    border-radius: 1.5rem;
    cursor: crosshair;
    touch-action: none;
    width: 100%;
    display: block;
    transition: all 0.2s;
}

#prep-signature-canvas[b-gzjf8qmvtg] {
    height: 250px;
}

#builder-signature-canvas[b-gzjf8qmvtg] {
    height: 160px;
}

#prep-signature-canvas:hover[b-gzjf8qmvtg], #builder-signature-canvas:hover[b-gzjf8qmvtg] {
    border-color: var(--teal);
    background: #fdfdfd;
}

.sig-pad-actions[b-gzjf8qmvtg] {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.btn-sig-clear[b-gzjf8qmvtg] {
    background: #f1f5f9;
    border: none;
    color: #64748b;
    padding: 12px 30px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-sig-clear:hover[b-gzjf8qmvtg] {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.btn-sig-confirm[b-gzjf8qmvtg] {
    background: var(--teal);
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(26, 123, 123, 0.2);
    transition: all 0.2s;
}

.btn-sig-confirm:hover[b-gzjf8qmvtg] {
    background: #006666;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(26, 123, 123, 0.3);
}

.preview-simplied-content p[b-gzjf8qmvtg] {
    font-size: 1rem;
    line-height: 1.4;
}

.bg-light-soft[b-gzjf8qmvtg] {
    background-color: #f8fafc;
}
/* _content/TestAppBlazor/Components/Pages/MobileLogin.razor.rz.scp.css */
/* Scoped styles for MobileLogin.razor - Mobile Premium Theme */
.login-container[b-49wxbaflgi] {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    width: 900px;
    max-width: 95%;
    min-height: 550px;
    display: block;
    margin: auto;
}

.form-container[b-49wxbaflgi] {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.phone-container[b-49wxbaflgi] {
    inset-inline-start: 0;
    width: 50%;
    z-index: 2;
}

.email-container[b-49wxbaflgi] {
    inset-inline-start: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.login-container.right-panel-active .phone-container[b-49wxbaflgi] {
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.6s ease-in-out;
}

[dir="rtl"] .login-container.right-panel-active .phone-container[b-49wxbaflgi] {
    transform: translateX(-100%);
}

.login-container.right-panel-active .email-container[b-49wxbaflgi] {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show-b-49wxbaflgi 0.6s;
}

[dir="rtl"] .login-container.right-panel-active .email-container[b-49wxbaflgi] {
    transform: translateX(-100%);
}

@keyframes show-b-49wxbaflgi {
    0%, 49.99% { opacity: 0; z-index: 1; }
    50%, 100% { opacity: 1; z-index: 5; }
}

.overlay-container[b-49wxbaflgi] {
    position: absolute;
    top: 0;
    inset-inline-start: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

.login-container.right-panel-active .overlay-container[b-49wxbaflgi] {
    transform: translateX(-100%);
}

[dir="rtl"] .login-container.right-panel-active .overlay-container[b-49wxbaflgi] {
    transform: translateX(100%);
}

.overlay[b-49wxbaflgi] {
    background: linear-gradient(135deg, #16969d 0%, #0d9488 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: white;
    position: relative;
    inset-inline-start: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.login-container.right-panel-active .overlay[b-49wxbaflgi] {
    transform: translateX(50%);
}

[dir="rtl"] .login-container.right-panel-active .overlay[b-49wxbaflgi] {
    transform: translateX(-50%);
}

.overlay-panel[b-49wxbaflgi] {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.overlay-left[b-49wxbaflgi] {
    transform: translateX(-20%);
}

[dir="rtl"] .overlay-left[b-49wxbaflgi] {
    transform: translateX(20%);
}

.login-container.right-panel-active .overlay-left[b-49wxbaflgi] {
    transform: translateX(0);
}

.overlay-right[b-49wxbaflgi] {
    inset-inline-end: 0;
    transform: translateX(0);
}

.login-container.right-panel-active .overlay-right[b-49wxbaflgi] {
    transform: translateX(20%);
}

[dir="rtl"] .login-container.right-panel-active .overlay-right[b-49wxbaflgi] {
    transform: translateX(-20%);
}

form[b-49wxbaflgi] {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    text-align: center;
}

h1[b-49wxbaflgi] {
    font-weight: bold;
    margin-bottom: 20px;
    color: #1a3d5c;
    font-size: 2rem;
}

.input-group[b-49wxbaflgi] {
    width: 100%;
    margin-bottom: 15px;
    text-align: left;
}

.input-label[b-49wxbaflgi] {
    display: block;
    font-size: 13px;
    color: #435e72;
    margin-bottom: 5px;
    font-weight: 500;
}

input[b-49wxbaflgi] {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #e1e8ed;
    padding: 12px 15px;
    width: 100%;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s;
}

input:focus[b-49wxbaflgi] {
    outline: none;
    border-color: #16969d;
    background: white;
    box-shadow: 0 0 0 4px rgba(22, 150, 157, 0.1);
}

button[b-49wxbaflgi] {
    border-radius: 25px;
    border: none;
    background: #16969d;
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 14px 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(22, 150, 157, 0.3);
}

button:hover[b-49wxbaflgi] {
    background: #0d9488;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 150, 157, 0.4);
}

button:active[b-49wxbaflgi] {
    transform: translateY(0);
}

button.ghost[b-49wxbaflgi] {
    background: transparent;
    border: 2px solid white;
    box-shadow: none;
    width: auto;
}

button.ghost:hover[b-49wxbaflgi] {
    background: white;
    color: #16969d;
}

.overlay-panel h1[b-49wxbaflgi] {
    color: white;
}

.overlay-panel p[b-49wxbaflgi] {
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
}

.p-icon[b-49wxbaflgi] {
    font-size: 40px;
    margin-bottom: 15px;
}

.otp-box[b-49wxbaflgi] {
    text-align: center;
    font-size: 24px;
    letter-spacing: 15px;
    font-weight: bold;
    padding-left: 25px;
}

/* Inline Phone Input refinements */
.phone-input-wrapper[b-49wxbaflgi] {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding-inline-start: 10px;
    transition: all 0.3s;
    position: relative;
    overflow: visible;
}

.phone-input-wrapper:focus-within[b-49wxbaflgi] {
    border-color: #16969d;
    background: white;
    box-shadow: 0 0 0 4px rgba(22, 150, 157, 0.1);
}

.phone-input-wrapper input[b-49wxbaflgi] {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-inline-start: 8px;
    flex: 1;
}

.char-counter[b-49wxbaflgi] {
    position: absolute;
    inset-inline-end: 12px;
    bottom: 0px;
    font-size: 10px;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 5px;
    border-top-left-radius: 6px;
    pointer-events: none;
    transition: color 0.3s;
}

/* Searchable Country Selector */
.country-selector-container[b-49wxbaflgi] {
    position: relative;
    display: flex;
    align-items: center;
    border-inline-end: 1px solid #e1e8ed;
    height: 100%;
}

.selected-country[b-49wxbaflgi] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    cursor: pointer;
    font-weight: 600;
    color: #16969d;
    font-size: 14px;
    white-space: nowrap;
    height: 100%;
    transition: background 0.2s;
}

.selected-country:hover[b-49wxbaflgi] {
    background: rgba(22, 150, 157, 0.05);
}

.country-dropdown[b-49wxbaflgi] {
    position: absolute;
    top: calc(100% + 10px);
    inset-inline-start: 0;
    width: 250px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: slideDown-b-49wxbaflgi 0.3s ease-out;
}

@keyframes slideDown-b-49wxbaflgi {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-box[b-49wxbaflgi] {
    margin-bottom: 10px;
}

.search-box input[b-49wxbaflgi] {
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 10px;
}

.country-list[b-49wxbaflgi] {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 250px;
    overflow-y: auto;
}

.country-list li[b-49wxbaflgi] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 13px;
    transition: background 0.2s;
}

.country-list li:hover[b-49wxbaflgi] {
    background: #f1f5f9;
}

.country-list .flag[b-49wxbaflgi] {
    font-size: 16px;
}

.country-list .name[b-49wxbaflgi] {
    flex: 1;
    color: #334155;
}

.country-list .code[b-49wxbaflgi] {
    color: #16969d;
    font-weight: 500;
}

.dropdown-overlay[b-49wxbaflgi] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    background: transparent;
}

/* Validation Styles */
.phone-input-wrapper.invalid[b-49wxbaflgi] {
    border-color: #ef4444 !important;
}

.char-counter.valid[b-49wxbaflgi] {
    color: #10b981;
}

.phone-input-wrapper.invalid .char-counter[b-49wxbaflgi] {
    color: #ef4444;
}

@media (max-width: 768px) {
    .login-container[b-49wxbaflgi] {
        min-height: 600px;
    }
    .overlay-container[b-49wxbaflgi] {
        display: none;
    }
    .form-container[b-49wxbaflgi] {
        width: 100% !important;
        position: relative;
        opacity: 1 !important;
        transform: none !important;
    }
    .email-container[b-49wxbaflgi] {
        display: none;
    }
    .login-container.right-panel-active .email-container[b-49wxbaflgi] {
        display: flex;
    }
    .login-container.right-panel-active .phone-container[b-49wxbaflgi] {
        display: none;
    }
}
/* _content/TestAppBlazor/Components/Pages/UserLogin.razor.rz.scp.css */
/* Scoped styles for UserLogin.razor - Restored Sliding Panel */
.login-container[b-y5uenfak7p] {
    background: rgba(255, 255, 255, 0.85);
    /* Glass effect */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    width: 900px;
    max-width: 95%;
    min-height: 550px;
    display: block;
    margin: auto;
}

.form-container[b-y5uenfak7p] {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.sign-in-container[b-y5uenfak7p] {
    inset-inline-start: 0;
    width: 50%;
    z-index: 2;
}

.sign-up-container[b-y5uenfak7p] {
    inset-inline-start: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.login-container.right-panel-active .sign-in-container[b-y5uenfak7p] {
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.6s ease-in-out;
}

[dir="rtl"] .login-container.right-panel-active .sign-in-container[b-y5uenfak7p] {
    transform: translateX(-100%);
}

.login-container.right-panel-active .sign-up-container[b-y5uenfak7p] {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show-b-y5uenfak7p 0.6s;
}

[dir="rtl"] .login-container.right-panel-active .sign-up-container[b-y5uenfak7p] {
    transform: translateX(-100%);
}

@keyframes show-b-y5uenfak7p {

    0%,
    49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%,
    100% {
        opacity: 1;
        z-index: 5;
    }
}

.overlay-container[b-y5uenfak7p] {
    position: absolute;
    top: 0;
    inset-inline-start: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

.login-container.right-panel-active .overlay-container[b-y5uenfak7p] {
    transform: translateX(-100%);
}

[dir="rtl"] .login-container.right-panel-active .overlay-container[b-y5uenfak7p] {
    transform: translateX(100%);
}

.overlay[b-y5uenfak7p] {
    background: linear-gradient(135deg, #1a7b7b 0%, #2d9d9d 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: white;
    position: relative;
    inset-inline-start: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.login-container.right-panel-active .overlay[b-y5uenfak7p] {
    transform: translateX(50%);
}

[dir="rtl"] .login-container.right-panel-active .overlay[b-y5uenfak7p] {
    transform: translateX(-50%);
}

.overlay-panel[b-y5uenfak7p] {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.overlay-left[b-y5uenfak7p] {
    transform: translateX(-20%);
}

[dir="rtl"] .overlay-left[b-y5uenfak7p] {
    transform: translateX(20%);
}

.login-container.right-panel-active .overlay-left[b-y5uenfak7p] {
    transform: translateX(0);
}

.overlay-right[b-y5uenfak7p] {
    inset-inline-end: 0;
    transform: translateX(0);
}

.login-container.right-panel-active .overlay-right[b-y5uenfak7p] {
    transform: translateX(20%);
}

[dir="rtl"] .login-container.right-panel-active .overlay-right[b-y5uenfak7p] {
    transform: translateX(-20%);
}

form[b-y5uenfak7p] {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    text-align: center;
}

h1[b-y5uenfak7p] {
    font-weight: bold;
    margin-bottom: 10px;
    color: #1a3d5c;
    font-size: 2rem;
}

.social-container[b-y5uenfak7p] {
    margin: 20px 0;
}

.social-container a[b-y5uenfak7p] {
    border: 1px solid #ddd;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 40px;
    width: 40px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.social-container a:hover[b-y5uenfak7p] {
    border-color: #2d9d9d;
    color: #2d9d9d;
}

span[b-y5uenfak7p] {
    font-size: 12px;
    color: #666;
    margin: 10px 0;
}

input[b-y5uenfak7p] {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
    border-radius: 8px;
    font-size: 14px;
}

input:focus[b-y5uenfak7p] {
    outline: none;
    background: white;
    box-shadow: 0 0 0 2px rgba(45, 157, 157, 0.2);
}

button[b-y5uenfak7p] {
    border-radius: 20px;
    border: 1px solid #1a7b7b;
    background: #1a7b7b;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    cursor: pointer;
    margin-top: 10px;
    width: auto;
}

button:active[b-y5uenfak7p] {
    transform: scale(0.95);
}

button:focus[b-y5uenfak7p] {
    outline: none;
}

button.ghost[b-y5uenfak7p] {
    background: transparent;
    border-color: white;
}

.overlay-panel h1[b-y5uenfak7p] {
    color: white;
}

.overlay-panel p[b-y5uenfak7p] {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
}

.logo[b-y5uenfak7p] {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}
