/* /Components/Account/Pages/Login.razor.rz.scp.css */
.login[b-18798xmefi] {
    display: grid;
    width: 600px;
    max-width: 100%;
}

.main[b-18798xmefi] {
    display: flex;
    flex-direction: column;
}

[b-18798xmefi] button {
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: linear-gradient(145deg, #16d0bf, #38146c);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.25s;
    padding: 15px;
    font-size: 1rem;
    text-shadow: 0 0 10px black;
    font-weight: normal;
    letter-spacing: 0.1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 100%;
}

    [b-18798xmefi] button:hover {
        box-shadow: 0 0 10px #518fa1;
        text-shadow: 0 0 10px black;
    }

.form-floating[b-18798xmefi] {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}


[b-18798xmefi] input {
    padding: 15px;
    border: none;
    outline: none;
    border-radius: 10px;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

    [b-18798xmefi] input:hover {
        box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
        background: rgba(255, 255, 255, 0.9);
    }

    [b-18798xmefi] input:focus {
        box-shadow: 0 0 25px rgba(0, 0, 0, 1);
        background: rgba(255, 255, 255, 1);
    }

[b-18798xmefi] input::placeholder {
    text-align: left !important;
    color: rgba(0, 0, 0, 0.5) !important;
}

.form-label[b-18798xmefi] {
    font-size: 0.8em;
    padding: 0 0 10px 0;
}

h1[b-18798xmefi] {
    font-size: 1.5rem;
    color: #0ba1c5;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin: 0 0 30px 0;
    text-align: center;
}

.header h1[b-18798xmefi] {
    margin: 0;
}

[b-18798xmefi] .text-danger, [b-18798xmefi] .alert {
    font-size: 0.8em;
    border-radius: 10px;
    background: rgb(255, 150, 139);
    padding: 10px;
    margin: 0 0 10px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

[b-18798xmefi] li.validation-message {
    color: black;
    list-style: none;
}

.checkbox[b-18798xmefi] {
    margin: 0 0 30px 0;
}

.container[b-18798xmefi] {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1rem;
    user-select: none;
}

[b-18798xmefi] .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark[b-18798xmefi] {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 10px;
}

[b-18798xmefi] .container:hover input ~ .checkmark {
    background-color: #ccc;
}

[b-18798xmefi] .container input:checked ~ .checkmark {
    background-color: #0ba1c5;
}

.checkmark[b-18798xmefi]:after {
    content: "";
    position: absolute;
    display: none;
}

[b-18798xmefi] .container input:checked ~ .checkmark:after {
    display: block;
}

.container .checkmark[b-18798xmefi]:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
/* /Components/Conversation/ChatComposer.razor.rz.scp.css */
.chat-composer[b-mg387fgya2] {
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 20px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    box-shadow: 0 6px 20px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.02);
    animation: Show-Composer-b-mg387fgya2 0.5s forwards ease-out;
    backdrop-filter: blur(10px);
    pointer-events: all;
}

.seperator[b-mg387fgya2] {
    border-left: 1px rgba(255, 255, 255, 0.2) solid;
    height: 40px;
    margin-right: 10px;
    box-shadow: 0 0 10px black;
}

    .chat-composer button[b-mg387fgya2] {
        border: none;
        background: none;
        cursor: pointer;
        font-size: 20px;
        margin-right: 8px;
        width: 50px;
        height: 50px;
        transition: all 0.3s;
        border-radius: 100%;
        color: white;
    }

        .chat-composer button:disabled[b-mg387fgya2] {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .chat-composer button:hover[b-mg387fgya2] {
            background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
            box-shadow: 0 6px 20px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.02);
            color: #0ba1c5;
        }

@keyframes Show-Composer-b-mg387fgya2 {
    from {
        transform: translateY(20px);
        opacity: 0;
        filter: blur(20px);
    }

    to {
        transform: translateY(0);
        opacity: 1;
        filter: blur(0px);
    }
}
/* /Components/Conversation/ConversationMessage.razor.rz.scp.css */
.message[b-x6coz8d9qr] {
    transition: all 0.8s;
    border-radius: 12px;
    color: #0ba1c5;
    padding: 10px;
    background: rgba(0,0,0,0.1);
    margin: 10px 10px 0 10px;
}

    .message:hover[b-x6coz8d9qr] {

        background: rgba(0,0,0,0.3);
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }

.message-header[b-x6coz8d9qr] {
    display: grid;
    grid-template-columns: 1fr auto;
}

.message-title[b-x6coz8d9qr] {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    gap: 10px;
    flex-direction: column;
    display: flex;
    align-items: start;
}

    .message-title > p[b-x6coz8d9qr] {
        margin: 0;
        user-select: none;
    }

    .message-title .info-icon[b-x6coz8d9qr] {
        font-size: 0.6rem;
        align-self: center;
    }

    .message-timestamp[b-x6coz8d9qr] {
        font-size: 0.8rem;
    }

.msg-info[b-x6coz8d9qr] {
    display: flex;
    gap: 10px;
}

    .msg-info > p[b-x6coz8d9qr] {
        margin: 0;
        user-select: none;
        display: flex;
        gap: 0.3rem;
    }

.message-tools button[b-x6coz8d9qr] {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.9rem;
    margin-right: 1px;
    width: 35px;
    height: 35px;
    transition: all 0.3s;
    border-radius: 100%;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.5s;
}

.message:hover .message-tools button[b-x6coz8d9qr] {
    color: rgba(255, 255, 255, 0.9);
}

.message-tools button:hover[b-x6coz8d9qr] {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    box-shadow: 0 6px 20px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.02);
}

    .message-tools button > i[b-x6coz8d9qr] {
        transition: all 0.3s;
    }

.message-tools button:hover > i[b-x6coz8d9qr] {
    color: #0ba1c5;
}

.summary-expander[b-x6coz8d9qr] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.summary-expander:hover[b-x6coz8d9qr] {
    color: rgba(255, 255, 255, 1);
}

.summary-content[b-x6coz8d9qr] {
    font-size: 0.8rem;
    padding: 10px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;

}

.expander[b-x6coz8d9qr] {
    transition: all 0.5s;
}

.open .expander[b-x6coz8d9qr] {
    transform: rotate(-180deg);
}

.summary-content-wrapper[b-x6coz8d9qr] {
    transition: all 1s;
    overflow: auto;
    max-height: 500px;
}

.closed .summary-content-wrapper[b-x6coz8d9qr] {
    max-height: 0;
    opacity: 0;
}

/* /Components/Conversation/ConversationMessages.razor.rz.scp.css */
.conversation-messages[b-n5yfojcfww]
 {
    padding-bottom: 100px;
    overflow: auto;
}
/* /Components/Conversation/ModalEditor.razor.rz.scp.css */
[b-1eb0nq1s0g] .tinymce-wrapper {
}

[b-1eb0nq1s0g] .tox.tox-tinymce {
    border: none !important;
    height: 100% !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.editor[b-1eb0nq1s0g] {
    display: grid;
    width: 80cqw;
    height: 60cqh;
}
/* /Components/Conversation/ModalRecord.razor.rz.scp.css */
.voice-recorder-container[b-etxwtyl9pp] {
    display: grid;
    padding: 0;
    width: 100%;
    max-width: 900px;
    margin: 0;
    position: relative;
    overflow: auto;
    grid-template-rows: auto auto 1fr auto;
    width: 80cqw;
    height: 60cqh;
}

h3[b-etxwtyl9pp] {
    font-size: 1.5rem;
    color: #0ba1c5;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.timeline[b-etxwtyl9pp] {
    width: 100%;
    height: 0;
    display: block;
    overflow: hidden;
    transition: all 0.5s;
    opacity: 0;
    position: relative;
}

.timeline-canvas[b-etxwtyl9pp] {
    width: 100%;
    height: 100px;
    display: block;
}

.timeline-overflow-right[b-etxwtyl9pp] {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(-90deg, #272d3c 40%, rgba(200,200,255,0));
}

.recording .timeline[b-etxwtyl9pp] {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
    height: 100px;
    opacity: 1;
}

.transcription[b-etxwtyl9pp] {
    border-radius: 0.75rem;
    padding: 0.75rem;
    border: none;
    background: rgba(255,255,255,0.03);
    color: #fff;
    font-size: 0.98rem;
    resize: none;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    box-sizing: border-box;
    margin: 0 10px 10px 10px;
}

.tools[b-etxwtyl9pp] {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 10px;
}

    .tools .refresh-mics[b-etxwtyl9pp] {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 0 5px 5px 0;
    }

.recorder-footer[b-etxwtyl9pp] {
    display: flex;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(200, 200, 255, 0.04));
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
    align-items: center;
    padding: 10px;
    gap: 1rem;
    overflow: hidden;
}

.button-wrap[b-etxwtyl9pp] {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    --halo-s1: 0.08;
    --halo-o1: 0.5;
    --halo-x1: -8px;
    --halo-y1: -6px;
    --halo-s2: 0.07;
    --halo-o2: 0.5;
    --halo-x2: 10px;
    --halo-y2: -4px;
    --halo-s3: 0.06;
    --halo-o3: 0.5;
    --halo-x3: -10px;
    --halo-y3: 8px;
    --halo-s4: 0.05;
    --halo-o4: 0.5;
    --halo-x4: 12px;
    --halo-y4: 6px;
    --halo-s5: 0.045;
    --halo-o5: 0.5;
    --halo-x5: 0px;
    --halo-y5: 14px;
    --halo-hue-shift: 0deg;
}

.halo-svg[b-etxwtyl9pp] {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 180px;
    height: 180px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: blur(8px) saturate(100%);
    mix-blend-mode: screen;
    z-index: 0;
}

.halo[b-etxwtyl9pp] {
    transform-origin: 100px 100px;
    transition: transform 120ms cubic-bezier(.2,.8,.2,1), opacity 120ms linear;
    mix-blend-mode: screen;
    transform-box: fill-box;
    transform-origin: center;
}

.halo-1[b-etxwtyl9pp] {
    transform: translate(var(--halo-x1), var(--halo-y1)) scale(var(--halo-s1));
    opacity: var(--halo-o1);
    filter: hue-rotate(var(--halo-hue-shift));
}

.halo-2[b-etxwtyl9pp] {
    transform: translate(var(--halo-x2), var(--halo-y2)) scale(var(--halo-s2));
    opacity: var(--halo-o2);
    filter: hue-rotate(calc(var(--halo-hue-shift) * 0.6));
}

.halo-3[b-etxwtyl9pp] {
    transform: translate(var(--halo-x3), var(--halo-y3)) scale(var(--halo-s3));
    opacity: var(--halo-o3);
    filter: hue-rotate(calc(var(--halo-hue-shift) * 0.4));
}

.halo-4[b-etxwtyl9pp] {
    transform: translate(var(--halo-x4), var(--halo-y4)) scale(var(--halo-s4));
    opacity: var(--halo-o4);
    filter: hue-rotate(calc(var(--halo-hue-shift) * 0.25));
}

.halo-5[b-etxwtyl9pp] {
    transform: translate(var(--halo-x5), var(--halo-y5)) scale(var(--halo-s5));
    opacity: var(--halo-o5);
    filter: hue-rotate(calc(var(--halo-hue-shift) * 0.12));
}

.record-button[b-etxwtyl9pp] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(145deg, #16d0bf, #38146c);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.28);
    padding: 0;
    position: relative;
    z-index: 1; /* above halo */
    transition: all 0.25s;
}

    .record-button:hover[b-etxwtyl9pp] {
        transform: scale(1.06);
    }

    .record-button.disabled[b-etxwtyl9pp] {
        cursor: not-allowed;
        opacity: 0.5;
        transform: none;
    }

.icon[b-etxwtyl9pp] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.square[b-etxwtyl9pp] {
    width: 40%;
    height: 40%;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.28);
}

.record-button i[b-etxwtyl9pp] {
    font-size: 2rem;
}

.dot[b-etxwtyl9pp] {
    width: 40%;
    height: 40%;
    border-radius: 50%;
    background: white;
    box-shadow: inset 0 4px 14px rgba(0,0,0,0.28);
    outline: 4px white solid;
    margin: 10px;
    border: 4px #b70d0d solid;
}

.record-button[aria-pressed="true"][b-etxwtyl9pp] {
    outline: 2px solid rgba(255,255,255,0.12);
}

.time-display[b-etxwtyl9pp] {
    min-width: 170px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    box-shadow: 0 6px 20px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.02);
    color: #e6f7ff;
    font-family: "Segoe UI", Roboto, "SF Pro Text", "Helvetica Neue", monospace;
    z-index: 1;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    backdrop-filter: blur(10px);
    z-index: 100;
}

    .time-display.recording[b-etxwtyl9pp] {
        box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 28px rgba(56,20,108,0.18);
    }

.time-digits[b-etxwtyl9pp] {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.6px;
    color: #fff;
    padding: 10px;
}

    .time-digits .part[b-etxwtyl9pp] {
        background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(255,255,255,0.02));
        padding: 6px 8px;
        border-radius: 6px;
        min-width: 34px;
        text-align: center;
        box-shadow: inset 0 -6px 14px rgba(0,0,0,0.45);
    }

.colon[b-etxwtyl9pp] {
    color: white;
    font-weight: 900;
    padding: 0 2px;
    display: inline-block;
    width: 8px;
    text-align: center;
}

@keyframes blink-b-etxwtyl9pp {
    0%,40% {
        opacity: 1;
    }

    50%,90% {
        opacity: 0.2;
    }
}

.recording .time-display .colon[b-etxwtyl9pp] {
    animation: blink-b-etxwtyl9pp 1s infinite;
}

.time-sub[b-etxwtyl9pp] {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.level-meter[b-etxwtyl9pp] {
    display: flex;
    gap: 4px;
    width: 200px;
    max-width: 420px;
    height: 70px;
    align-items: flex-end;
    justify-content: flex-end;
}

.level-bar[b-etxwtyl9pp] {
    flex: 1;
    background: linear-gradient(to top,#1b2043, #0ba1c5);
    border-radius: 5px;
    transition: height 0.08s linear;
}

/* very small phones (portrait) */
@media (max-width: 480px) {
    /* mobile styles */
}

/* small phones (landscape) */
@media (min-width: 481px) and (max-width: 600px) {
    /* mobile-landscape styles */
}

/* tablets portrait */
@media (max-width: 768px) {
    .tools[b-etxwtyl9pp] {
        gap: 10px;
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .recorder-footer[b-etxwtyl9pp] {
        flex-direction: column;
    }

    .level-meter[b-etxwtyl9pp] {
        display: none
    }
}

/* tablets landscape */
@media (max-width: 1024px) {
    .voice-recorder-container[b-etxwtyl9pp] {
        width: 100%;
        max-width: 100%;
        margin: 0;
        height: 100%;
        border-radius: 0;
        grid-template-rows: auto auto 1fr auto;
    }
}

/* laptops / small desktop */
@media (min-width: 1025px) and (max-width: 1280px) {
    /* small desktop styles */
}

@media (min-width: 1281px) and (max-width: 1440px) {
    /* desktop styles */
}

/* large desktops */
@media (min-width: 1441px) and (max-width: 1920px) {
    /* wide desktop styles */
}

/* extra-large screens */
@media (min-width: 1921px) {
    /* ultra-wide styles */
}
/* /Components/Layout/DashboardLayout.razor.rz.scp.css */
main[b-bz14d4mrpy] {
    display: grid;
    grid-template-columns: auto 1fr;
    overflow: auto;
    height: 100%;
    width: 100%;
}

aside[b-bz14d4mrpy] {
    overflow: auto;
    display: grid;
}

content[b-bz14d4mrpy] {
    position: relative;
    overflow: auto;
}

.bg[b-bz14d4mrpy] {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    pointer-events: none;
    overflow: hidden;
}

    .bg[b-bz14d4mrpy]::before {
        content: '';
        background-image: radial-gradient(#0ba1c517, transparent);
        position: absolute;
        bottom: -100%;
        left: 0;
        right: 0;
        top: 0;
    }

#blazor-error-ui[b-bz14d4mrpy] {
    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-bz14d4mrpy] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/LoginLayout.razor.rz.scp.css */
.login-layout[b-yv8svfkuil] {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    background-image: radial-gradient(#0ba1c542, transparent);
    flex-direction: column;
}

.icon img[b-yv8svfkuil] {
    height: 150px;
    margin: 20px 0;
}

.icon[b-yv8svfkuil] {
   animation: pulse-b-yv8svfkuil 2s ease-in-out alternate infinite;
}

@keyframes pulse-b-yv8svfkuil {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1)
    }
}

content[b-yv8svfkuil] {
    background: #2f3f50;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 50px black;
    color: white;
    position: relative;
}

footer[b-yv8svfkuil] {
    display: flex;
    gap: 20px;
    margin: 40px;
}

[b-yv8svfkuil] footer a {
    color: rgba(255, 255, 255, 0.5);
}

#blazor-error-ui[b-yv8svfkuil] {
    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-yv8svfkuil] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/MainLayout.razor.rz.scp.css */
main[b-r0cj2ix7gr] {
    display: grid;
    overflow: auto;
    height: 100%;
    width: 100%;
}


#blazor-error-ui[b-r0cj2ix7gr] {
    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-r0cj2ix7gr] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/MainMenu.razor.rz.scp.css */
.conversations-menu[b-gwikl56ew5] {
    width: 280px;
    background: linear-gradient(rgba(255,255,255,0.05), transparent);
    backdrop-filter: blur(10px);
    padding: 10px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 5px;
    border-radius: 5px;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
}

    .conversations-menu h3[b-gwikl56ew5] {
        margin-bottom: 1rem;
        text-align: center;
        font-size: 1.2rem;
        color: #0ba1c5;
        font-weight: normal;
        text-transform: uppercase;
        letter-spacing: 0.3rem;
        text-shadow: 0 0 20px black;
    }

input[b-gwikl56ew5] {
    padding: 10px;
    border: none;
    outline: none;
    transition: all 0.3s;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 5px;
    background: transparent;
    color: white;
    border-bottom: 1px rgba(255, 255, 255, 0.3) solid;
}

    input:hover[b-gwikl56ew5] {
        border-bottom: 1px rgba(255, 255, 255, 1) solid;
    }

    input:focus[b-gwikl56ew5] {
        border-bottom: 1px rgba(255, 255, 255, 1) solid;

    }

    .conversations-menu ul[b-gwikl56ew5] {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

.conversation-item[b-gwikl56ew5] {
    margin: 0;
    padding: 0;
}

[b-gwikl56ew5] .conversation-item a {
    padding: 0.5rem 0.75rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    transition: all 0.5s;
    cursor: pointer;
/*    box-shadow: 0 0 20px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.02);*/
    gap: 5px;
    color: white;
    position: relative;
    text-decoration: none;
}

    [b-gwikl56ew5] .conversation-item a:hover {
        background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
        box-shadow: 0 6px 20px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.02);
    }

    [b-gwikl56ew5] .conversation-item a.active {
        background: transparent;
        box-shadow: 0 6px 20px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.02);
    }

    [b-gwikl56ew5] .conversation-item a::before {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        content: '';
        background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.1));
        opacity: 0;
        border-radius: 5px;
        transition: all 0.3s;
        border-radius: 0.75rem;
        z-index: -1;
    }

    [b-gwikl56ew5] .conversation-item a.active::before {
        opacity: 1;
    }

    [b-gwikl56ew5] .conversation-item a.active {
       
    }

.conversation-title[b-gwikl56ew5] {
    font-weight: normal;
    color: #fff;
}

.conversation-last-message[b-gwikl56ew5] {
    font-size: 0.8rem;
    color: #ccc;
}

button[b-gwikl56ew5] {
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: linear-gradient(145deg, #16d0bf, #38146c);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.25s;
    padding: 15px;
    font-size: 1rem;
    text-shadow: 0 0 10px black;
    font-weight: normal;
    letter-spacing: 0.1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

    button:hover[b-gwikl56ew5] {
        box-shadow: 0 0 10px #518fa1;
        text-shadow: 0 0 10px black;
    }

/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-s695v4g6e2],
.components-reconnect-repeated-attempt-visible[b-s695v4g6e2],
.components-reconnect-failed-visible[b-s695v4g6e2],
.components-pause-visible[b-s695v4g6e2],
.components-resume-failed-visible[b-s695v4g6e2],
.components-rejoining-animation[b-s695v4g6e2] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-s695v4g6e2],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-s695v4g6e2],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-s695v4g6e2],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-s695v4g6e2],
#components-reconnect-modal.components-reconnect-retrying[b-s695v4g6e2],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-s695v4g6e2],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-s695v4g6e2],
#components-reconnect-modal.components-reconnect-failed[b-s695v4g6e2],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-s695v4g6e2] {
    display: block;
}


#components-reconnect-modal[b-s695v4g6e2] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-s695v4g6e2 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-s695v4g6e2 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-s695v4g6e2 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-s695v4g6e2]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-s695v4g6e2 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-s695v4g6e2 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-s695v4g6e2 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-s695v4g6e2 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-s695v4g6e2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-s695v4g6e2] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-s695v4g6e2] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-s695v4g6e2] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-s695v4g6e2] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-s695v4g6e2] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-s695v4g6e2] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-s695v4g6e2 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-s695v4g6e2] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-s695v4g6e2 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Conversation.razor.rz.scp.css */
.conversation[b-sdkit0qvpb] {
    display: grid;
    grid-template-rows: auto 1fr auto;
    height: 100%;
    position: relative;
    overflow: auto;
}

.conversation-foot[b-sdkit0qvpb] {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    right: 0;
    pointer-events: none;
}

.conversation-main[b-sdkit0qvpb] {
    overflow: auto;
    display: grid;
}
/* /Components/Pages/Home.razor.rz.scp.css */
.voice-recorder-container-center[b-qihzwpbqqb] {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.voice-recorder-container[b-qihzwpbqqb] {
    display: grid;
    padding: 0;
    width: 100%;
    max-width: 900px;
    margin: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(200,200,255,0.02));
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    border-radius: 1rem;
    position: relative;
    overflow: auto;
    grid-template-rows: auto auto 400px auto;
}

h3[b-qihzwpbqqb] {
    font-size: 1.5rem;
    color: #0ba1c5;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.timeline[b-qihzwpbqqb] {
    width: 100%;
    height: 0;
    display: block;
    overflow: hidden;
    transition: all 0.5s;
    opacity: 0;
    position: relative;
}

.timeline-canvas[b-qihzwpbqqb] {
    width: 100%;
    height: 100px;
    display: block;
}

.timeline-overflow-left[b-qihzwpbqqb] {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(90deg, #2f3441 40%, rgba(200,200,255,0));
}

.timeline-overflow-right[b-qihzwpbqqb] {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(-90deg, #272d3c 40%, rgba(200,200,255,0));
}

.recording .timeline[b-qihzwpbqqb] {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
    height: 100px;
    opacity: 1;
}

.transcription[b-qihzwpbqqb] {
    border-radius: 0.75rem;
    padding: 0.75rem;
    border: none;
    background: rgba(255,255,255,0.03);
    color: #fff;
    font-size: 0.98rem;
    resize: none;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    box-sizing: border-box;
    margin: 0 10px 10px 10px;
}

.tools[b-qihzwpbqqb] {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 10px;
}

    .tools .refresh-mics[b-qihzwpbqqb] {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 0 5px 5px 0;
    }

.recorder-footer[b-qihzwpbqqb] {
    display: flex;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(200, 200, 255, 0.04));
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
    align-items: center;
    padding: 10px;
    gap: 1rem;
    overflow: hidden;
}

.button-wrap[b-qihzwpbqqb] {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    --halo-s1: 0.08;
    --halo-o1: 0.5;
    --halo-x1: -8px;
    --halo-y1: -6px;
    --halo-s2: 0.07;
    --halo-o2: 0.5;
    --halo-x2: 10px;
    --halo-y2: -4px;
    --halo-s3: 0.06;
    --halo-o3: 0.5;
    --halo-x3: -10px;
    --halo-y3: 8px;
    --halo-s4: 0.05;
    --halo-o4: 0.5;
    --halo-x4: 12px;
    --halo-y4: 6px;
    --halo-s5: 0.045;
    --halo-o5: 0.5;
    --halo-x5: 0px;
    --halo-y5: 14px;
    --halo-hue-shift: 0deg;
}

.halo-svg[b-qihzwpbqqb] {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 180px;
    height: 180px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: blur(8px) saturate(100%);
    mix-blend-mode: screen;
    z-index: 0;
}

.halo[b-qihzwpbqqb] {
    transform-origin: 100px 100px;
    transition: transform 120ms cubic-bezier(.2,.8,.2,1), opacity 120ms linear;
    mix-blend-mode: screen;
    transform-box: fill-box;
    transform-origin: center;
}

.halo-1[b-qihzwpbqqb] {
    transform: translate(var(--halo-x1), var(--halo-y1)) scale(var(--halo-s1));
    opacity: var(--halo-o1);
    filter: hue-rotate(var(--halo-hue-shift));
}
.halo-2[b-qihzwpbqqb] {
    transform: translate(var(--halo-x2), var(--halo-y2)) scale(var(--halo-s2));
    opacity: var(--halo-o2);
    filter: hue-rotate(calc(var(--halo-hue-shift) * 0.6));
}
.halo-3[b-qihzwpbqqb] {
    transform: translate(var(--halo-x3), var(--halo-y3)) scale(var(--halo-s3));
    opacity: var(--halo-o3);
    filter: hue-rotate(calc(var(--halo-hue-shift) * 0.4));
}
.halo-4[b-qihzwpbqqb] {
    transform: translate(var(--halo-x4), var(--halo-y4)) scale(var(--halo-s4));
    opacity: var(--halo-o4);
    filter: hue-rotate(calc(var(--halo-hue-shift) * 0.25));
}
.halo-5[b-qihzwpbqqb] {
    transform: translate(var(--halo-x5), var(--halo-y5)) scale(var(--halo-s5));
    opacity: var(--halo-o5);
    filter: hue-rotate(calc(var(--halo-hue-shift) * 0.12));
}

.record-button[b-qihzwpbqqb] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(145deg, #16d0bf, #38146c);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.28);
    padding: 0;
    position: relative;
    z-index: 1; /* above halo */
    transition: all 0.25s;
}

.record-button:hover[b-qihzwpbqqb] {
    transform: scale(1.06);
}

    .record-button.disabled[b-qihzwpbqqb] {
        cursor: not-allowed;
        opacity: 0.5;
        transform: none;
    }

.icon[b-qihzwpbqqb] { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }

.square[b-qihzwpbqqb] {
    width: 40%;
    height: 40%;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.28);
}

.dot[b-qihzwpbqqb] {
    width: 40%;
    height: 40%;
    border-radius: 50%;
    background: white;
    box-shadow: inset 0 4px 14px rgba(0,0,0,0.28);
    outline: 4px white solid;
    margin: 10px;
    border: 4px #b70d0d solid;
}

.record-button[aria-pressed="true"][b-qihzwpbqqb] { outline: 2px solid rgba(255,255,255,0.12); }

.time-display[b-qihzwpbqqb] {
    min-width: 170px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    box-shadow: 0 6px 20px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.02);
    color: #e6f7ff;
    font-family: "Segoe UI", Roboto, "SF Pro Text", "Helvetica Neue", monospace;
    z-index: 1;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    backdrop-filter: blur(10px);
    z-index: 100;
}

.time-display.recording[b-qihzwpbqqb] {
    box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 28px rgba(56,20,108,0.18);
}

.time-digits[b-qihzwpbqqb] {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.6px;
    color: #fff;
    padding: 10px;
}

.time-digits .part[b-qihzwpbqqb] {
    background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(255,255,255,0.02));
    padding: 6px 8px;
    border-radius: 6px;
    min-width: 34px;
    text-align: center;
    box-shadow: inset 0 -6px 14px rgba(0,0,0,0.45);
}

.colon[b-qihzwpbqqb] {
    color: white;
    font-weight: 900;
    padding: 0 2px;
    display: inline-block;
    width: 8px;
    text-align: center;
}

@keyframes blink-b-qihzwpbqqb {
    0%,40% {
        opacity: 1;

    }
    50%,90% {
        opacity: 0.2;

    }
}

.recording .time-display .colon[b-qihzwpbqqb] {
    animation: blink-b-qihzwpbqqb 1s infinite;
}

.time-sub[b-qihzwpbqqb] {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.level-meter[b-qihzwpbqqb] {
    display: flex;
    gap: 4px;
    width: 200px;
    max-width: 420px;
    height: 70px;
    align-items: flex-end;
    justify-content: flex-end;
}
.level-bar[b-qihzwpbqqb] {
    flex: 1;
    background: linear-gradient(to top,#1b2043, #0ba1c5);
    border-radius: 5px;
    transition: height 0.08s linear;
}

/* very small phones (portrait) */
@media (max-width: 480px) {
    /* mobile styles */
}

/* small phones (landscape) */
@media (min-width: 481px) and (max-width: 600px) {
    /* mobile-landscape styles */
}

/* tablets portrait */
@media (max-width: 768px) {
    .tools[b-qihzwpbqqb] {
        gap: 10px;
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .recorder-footer[b-qihzwpbqqb] {
        flex-direction: column;
    }

    .level-meter[b-qihzwpbqqb] {
        display: none
    }
}

/* tablets landscape */
@media (max-width: 1024px) {
    .voice-recorder-container[b-qihzwpbqqb] {
        width: 100%;
        max-width: 100%;
        margin: 0;
        height: 100%;
        border-radius: 0;
        grid-template-rows: auto auto 1fr auto;
    }
}

/* laptops / small desktop */
@media (min-width: 1025px) and (max-width: 1280px) {
    /* small desktop styles */
}

@media (min-width: 1281px) and (max-width: 1440px) {
    /* desktop styles */
}

/* large desktops */
@media (min-width: 1441px) and (max-width: 1920px) {
    /* wide desktop styles */
}

/* extra-large screens */
@media (min-width: 1921px) {
    /* ultra-wide styles */
}
/* /Components/Pages/Login.razor.rz.scp.css */
.login[b-z8pqkf2to4] {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 10px;
    width: 600px;
    max-width: 100%;
}

.main[b-z8pqkf2to4] {
    display: flex;
    flex-direction: column;
}

[b-z8pqkf2to4] .btn-primary::after {
    content: '';
    background: linear-gradient(100deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

[b-z8pqkf2to4] .btn-primary {
    background: var(--accent-color);
    padding: 10px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    width: 100%;
}

    [b-z8pqkf2to4] .btn-primary:hover {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        transform: scale(1.02);
    }

.form-floating[b-z8pqkf2to4] {
    display: flex;
    flex-direction: column;
}

[b-z8pqkf2to4] input::placeholder {
    text-align: left !important;
    color: rgba(0, 0, 0, 0.5) !important;
}

.form-label[b-z8pqkf2to4] {
    font-size: 0.8em;
    padding: 0 0 5px 0;
}

h1[b-z8pqkf2to4] {
    font-size: 1.5em;
    margin: 0px 0 10px 0;
}

.header h1[b-z8pqkf2to4] {
    margin: 0;
}

aside[b-z8pqkf2to4] {
    display: grid;
    margin: -1.25rem -1.25rem -1rem 0;
    position: relative;
    width: 200px;
    border-radius: 0 5px 5px 0;
    overflow: hidden;
}

img[b-z8pqkf2to4] {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


aside[b-z8pqkf2to4]::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    bottom: 0;
    width: 70px;
    background: linear-gradient(90deg,white 0%, transparent 100%);
}

[b-z8pqkf2to4] .text-danger, [b-z8pqkf2to4] .alert {
    font-size: 0.8em;
    border-radius: var(--border-radius);
    background: rgba(255, 0, 0, 0.1);
    padding: 10px;
    margin: 0 0 10px 0;
}

@media (max-width: 700px) {
    aside[b-z8pqkf2to4] {
        width: 0;
        display: none;
    }

    .login[b-z8pqkf2to4] {
        grid-gap: 0;
    }
}
/* /Components/Shared/Button.razor.rz.scp.css */
.button-container[b-u1jqdgvkt1] {
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: gray;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 0.8rem;
    text-shadow: 0 0 10px black;
    font-weight: normal;
    letter-spacing: 0.03rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    box-shadow: 0 6px 20px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.02);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .button-container.primary[b-u1jqdgvkt1] {
        background: linear-gradient(800deg, #169cd063, #169cd00f);
    }

    .button-container[b-u1jqdgvkt1]::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        content: '';
        transition: all 0.3s;
        opacity: 0;
        background: rgba(255, 255, 255, 0.1);
    }

    .button-container:hover[b-u1jqdgvkt1] {
        box-shadow: 0 6px 20px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.02);
    }

    .button-container:hover[b-u1jqdgvkt1]::after {
        opacity: 1;
    }

    .button-content[b-u1jqdgvkt1] {
    }
/* /Components/Shared/Input.razor.rz.scp.css */
input[b-yprnbw38ao] {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    box-sizing: border-box;
    outline: none;
    padding: 10px;
    font-size: 0.9rem;
    transition: all 0.3s;
    overflow: hidden;
    border-radius: 8px;
}

    input:focus[b-yprnbw38ao] {
        box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
        border-color: var(--AppColor);
    }

    input[b-yprnbw38ao]::placeholder {
        color: rgba(0, 0, 0, 0.4);
        font-style: italic;
    }
/* /Components/Shared/Modals/Alert.razor.rz.scp.css */
.content-text[b-chlvox9e5h] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

p[b-chlvox9e5h] {
    max-width: 500px;
    line-height: 1.5rem;
}
/* /Components/Shared/Modals/ModalsHost.razor.rz.scp.css */
.modal-container[b-sa87s9w36e] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: 100;
    container-type: inline-size;
}

.modal-wrapper[b-sa87s9w36e] {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
}

.modal[b-sa87s9w36e] {
    pointer-events: all;
    animation: Show-b-sa87s9w36e 0.3s forwards;
    display: grid;
    padding: 0;
    margin: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(200,200,255,0.02));
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    border-radius: 1rem;
    position: relative;
    overflow: auto;
    backdrop-filter: blur(20px);
}

    .modal.hidden[b-sa87s9w36e] {
        animation: Hide-b-sa87s9w36e 0.3s forwards;
        pointer-events: none;
    }

@keyframes Hide-b-sa87s9w36e {
    from {
        box-shadow: 0 0 50px rgba(0, 0, 0,0.5);
        transform: scale(1);
        opacity: 1;
    }

    to {
        box-shadow: 0 0 0px rgba(0, 0, 0,0);
        transform: scale(0.8);
        opacity: 0;
    }
}

@keyframes Show-b-sa87s9w36e {
    from {
        box-shadow: 0 0 0px rgba(0, 0, 0,0);
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        box-shadow: 0 0 50px rgba(0, 0, 0, 1);
        transform: scale(1);
        opacity: 1;
    }
}
/* /Components/Shared/Modals/ModalTemplate.razor.rz.scp.css */
.modal-template[b-uvs53e14xh] {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-width: 500px;
    min-height: 200px;
    box-sizing: border-box;
    overflow: hidden;

}

.modal-center[b-uvs53e14xh] {
    overflow: auto;
    display: grid;
    padding: 20px 10px;
}

h2[b-uvs53e14xh] {
    font-size: 1.2rem;
    padding: 5px 10px;
    text-align: center;
    color: white;
    font-weight: normal;
    letter-spacing: 2px;
    margin: 0;
    user-select: none;
}

.modal-title[b-uvs53e14xh] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0 0 0;
}

.modal-footer[b-uvs53e14xh] {
    animation: show-buttons-b-uvs53e14xh 0.3s ease forwards;
    animation-delay: 0s;
    opacity: 0;
    animation-delay: 0.3s;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(200, 200, 255, 0.04));
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
    align-items: center;
    padding: 10px;
    grid-gap: 1rem;
    overflow: hidden;
    grid-auto-flow: column;
    overflow: hidden;
    display: grid;
}

@keyframes show-buttons-b-uvs53e14xh {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Shared/Modals/Prompt.razor.rz.scp.css */
.prompt-content[b-lhjtdkaq5v] {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px 0;
}

p[b-lhjtdkaq5v] {
    text-align: center;
    margin: 0;
    color: white;
}
/* /Components/Shared/Overlay.razor.rz.scp.css */
.overlay[b-xlezkagw9z] {
    position: fixed;
    top: -10000px;
    right: -10000px;
    bottom: -10000px;
    left: -10000px;
    z-index: 1;
    cursor: default;
    pointer-events: all;
}
/* /Components/Shared/Select.razor.rz.scp.css */
.select[b-s4fqo9yttk] {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    position: relative;
    border-radius: 5px;
    display: grid;
    transition: all 0.3s;
    box-shadow: 0 0px 10px rgba(0,0,0,0.2);
    color: white;
    min-width: 200px;
}

input[b-s4fqo9yttk] {
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
    width: 100%;
    box-sizing: border-box;
}

input:hover[b-s4fqo9yttk] {
    background: rgba(255, 255, 255, 1);
}

    input:focus[b-s4fqo9yttk] {
        background: rgba(255, 255, 255, 1);
        box-shadow: 0 0px 10px rgba(0,0,0,0.2);
    }



    .select:hover[b-s4fqo9yttk] {
        box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 28px rgba(56,20,108,0.3);
    }

    .select.has-focus[b-s4fqo9yttk] {
    }

.select-main[b-s4fqo9yttk] {
    display: grid;
    grid-template-columns: 1fr auto;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.select-center[b-s4fqo9yttk] {
    display: grid;
    grid-template-columns: 1fr auto;
}

.select-right[b-s4fqo9yttk] {
    display: grid;
}

[b-s4fqo9yttk] p {
    overflow: hidden;
    text-wrap: nowrap;
    text-overflow: clip;
    margin: 0;
}

.selected-option[b-s4fqo9yttk] {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0 12px 20px;
    transition: all 0.3s;
}

.expander[b-s4fqo9yttk], [b-s4fqo9yttk] button {
    display: flex;
    align-items: center;
    padding: 0 20px;
    transition: all 0.3s;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
}

    .expander:hover[b-s4fqo9yttk], [b-s4fqo9yttk] button:hover {
        color: var(--primary-color)
    }

.is-open .expander[b-s4fqo9yttk] {
    transform: rotate(180deg);
}

.context-menu[b-s4fqo9yttk] {
    position: absolute;
    left: 0;
    right: 0;
    top: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    box-shadow: 0 0px 20px rgba(0,0,0,0.5);
    overflow: hidden;
    z-index: 2;
    animation: show-options-b-s4fqo9yttk forwards 0.3s;
    min-height: 20px;
    backdrop-filter: blur(10px);
}

.select-options[b-s4fqo9yttk] {
    display: flex;
    flex-direction: column;
}

.search[b-s4fqo9yttk] {
    display: grid;
    padding: 10px 10px 2px 10px;
}

.select-option[b-s4fqo9yttk] {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    transition: all 0.3s;
    cursor: pointer;
    animation: 0.3s show-option-b-s4fqo9yttk forwards;
    animation-delay: 0s;
    opacity: 0;
    margin: 5px;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 0.9rem;
}

.no-click.select-option[b-s4fqo9yttk] {
    cursor: default;
}

.select-option:hover:not(.no-click)[b-s4fqo9yttk] {
    background: rgba(255, 255, 255, 0.1);
}

.mouse-cap[b-s4fqo9yttk] {
    position: fixed;
    top: -1000px;
    left: -1000px;
    right: -1000px;
    bottom: -1000px;
    background: transparent;
    z-index: 1;
}

.no-options[b-s4fqo9yttk] {
    padding: 10px;
    text-align: center;
    color: var(--color-gray-300);
}

@keyframes show-options-b-s4fqo9yttk {
    from {
        margin-top: -20px;
        opacity: 0;
    }

    to {
        margin-top: 0;
        opacity: 1;
    }
}

@keyframes show-option-b-s4fqo9yttk {
    from {
        opacity: 0;
        margin-left: -10px
    }

    to {
        opacity: 1;
        margin-left: 5px
    }
}
/* /Components/Shared/Textarea.razor.rz.scp.css */
textarea[b-lobju5qtbj] {
    display: block;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    border: 1px rgba(255, 255, 255, 0.05) solid;
    outline: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    resize: none;
    margin: 0;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
}

    input:focus[b-lobju5qtbj] {
        box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
        border-color: var(--AppColor);
    }

    input[b-lobju5qtbj]::placeholder {
        color: rgba(0, 0, 0, 0.4);
        font-style: italic;
    }
