/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-xdnppnywbs],
.components-reconnect-repeated-attempt-visible[b-xdnppnywbs],
.components-reconnect-failed-visible[b-xdnppnywbs],
.components-pause-visible[b-xdnppnywbs],
.components-resume-failed-visible[b-xdnppnywbs],
.components-rejoining-animation[b-xdnppnywbs] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-xdnppnywbs],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-xdnppnywbs],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-xdnppnywbs],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-xdnppnywbs],
#components-reconnect-modal.components-reconnect-retrying[b-xdnppnywbs],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-xdnppnywbs],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-xdnppnywbs],
#components-reconnect-modal.components-reconnect-failed[b-xdnppnywbs],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-xdnppnywbs] {
    display: block;
}


#components-reconnect-modal[b-xdnppnywbs] {
    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-xdnppnywbs 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-xdnppnywbs 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-xdnppnywbs 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-xdnppnywbs]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-xdnppnywbs 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-xdnppnywbs {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-xdnppnywbs {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-xdnppnywbs {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-xdnppnywbs] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-xdnppnywbs] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-xdnppnywbs] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-xdnppnywbs] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-xdnppnywbs] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-xdnppnywbs] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-xdnppnywbs] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-xdnppnywbs 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-xdnppnywbs] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-xdnppnywbs {
    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/OmniMetaWhatsAppPanel.razor.rz.scp.css */
.meta-shell[b-piu0mty9h8] {
    color: #17324d;
}

.meta-hero[b-piu0mty9h8],
.meta-section[b-piu0mty9h8],
.meta-connection[b-piu0mty9h8] {
    border-bottom: 1px solid #d8e1e8;
}

.meta-hero[b-piu0mty9h8] {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.meta-hero h2[b-piu0mty9h8],
.meta-section h3[b-piu0mty9h8] {
    margin: 0;
    letter-spacing: -.025em;
}

.meta-shell button[b-piu0mty9h8] {
    min-height: 40px;
    padding: .55rem .75rem;
    border: 1px solid #ccd8e2;
    border-radius: 8px;
    background: #fff;
    color: #17324d;
    box-shadow: none;
    font-weight: 700;
}

.meta-shell button:disabled[b-piu0mty9h8] {
    opacity: .55;
}

.primary[b-piu0mty9h8] {
    border-color: #ef6b33 !important;
    background: #ef6b33 !important;
    color: #fff !important;
}

.meta-state[b-piu0mty9h8] {
    margin: .85rem 0;
    padding: .85rem 0;
    border-bottom: 1px solid #d8e1e8;
    color: #526778;
}

.meta-state.error[b-piu0mty9h8] {
    color: #a83524;
}

.meta-state.warning[b-piu0mty9h8] {
    color: #725514;
}

.meta-state.display-name-review[b-piu0mty9h8] {
    padding: .9rem;
    display: grid;
    gap: .35rem;
    border: 1px solid #e4b8a5;
    border-radius: 10px;
    background: #fff8f3;
    color: #73351f;
}

.meta-state.display-name-review strong[b-piu0mty9h8] {
    color: #5f2b1b;
}

.meta-state.display-name-review span[b-piu0mty9h8],
.meta-state.display-name-review small[b-piu0mty9h8] {
    line-height: 1.5;
}

.meta-connection[b-piu0mty9h8] {
    padding: 1rem 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: .65rem 1rem;
}

.meta-connection div[b-piu0mty9h8] {
    min-width: 0;
    display: grid;
}

.meta-connection div:last-child[b-piu0mty9h8] {
    grid-column: 1 / -1;
    padding-top: .65rem;
    border-top: 1px solid #edf1f4;
}

.meta-connection small[b-piu0mty9h8],
.phone-card small[b-piu0mty9h8],
.template-list small[b-piu0mty9h8] {
    color: #6d8090;
}

.meta-connection code[b-piu0mty9h8] {
    overflow: hidden;
    font-size: .72rem;
    text-overflow: ellipsis;
}

.status[b-piu0mty9h8],
.template-status[b-piu0mty9h8],
.quality[b-piu0mty9h8] {
    width: fit-content;
    padding: .2rem .45rem;
    border-radius: 5px;
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.status.active[b-piu0mty9h8],
.template-status.approved[b-piu0mty9h8],
.quality.green[b-piu0mty9h8] {
    background: #dff7e9;
    color: #147443;
}

.template-status.pending[b-piu0mty9h8],
.quality.yellow[b-piu0mty9h8] {
    background: #fff3c9;
    color: #725514;
}

.template-status.rejected[b-piu0mty9h8],
.template-status.disabled[b-piu0mty9h8],
.quality.red[b-piu0mty9h8] {
    background: #ffe4df;
    color: #9c3022;
}

.meta-section[b-piu0mty9h8] {
    padding: 1.1rem 0;
}

.meta-section-title[b-piu0mty9h8] {
    margin-bottom: .85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.meta-section-title em[b-piu0mty9h8] {
    min-width: 1.75rem;
    color: #6d8090;
    font-style: normal;
    font-weight: 750;
    text-align: right;
}

.phone-grid[b-piu0mty9h8],
.template-list[b-piu0mty9h8] {
    display: grid;
}

.phone-card[b-piu0mty9h8] {
    padding: .9rem 0;
    display: grid;
    gap: .75rem;
    border-top: 1px solid #dce5eb;
}

.phone-card:last-child[b-piu0mty9h8] {
    padding-bottom: 0;
}

.phone-head[b-piu0mty9h8] {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.phone-head div[b-piu0mty9h8] {
    min-width: 0;
    display: grid;
    flex: 1;
}

.phone-dot[b-piu0mty9h8] {
    width: .65rem;
    height: .65rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #c2ccd3;
}

.enabled .phone-dot[b-piu0mty9h8] {
    background: #28a967;
}

.phone-card label[b-piu0mty9h8],
.template-editor label[b-piu0mty9h8] {
    display: grid;
    gap: .35rem;
    font-size: .75rem;
    font-weight: 700;
}

.phone-card input[b-piu0mty9h8],
.template-editor input[b-piu0mty9h8],
.template-editor select[b-piu0mty9h8],
.template-editor textarea[b-piu0mty9h8] {
    padding: .65rem;
    border: 1px solid #ccd8e2;
    border-radius: 8px;
    background: #fff;
}

.phone-foot[b-piu0mty9h8] {
    display: flex;
    align-items: center;
    gap: .45rem;
    flex-wrap: wrap;
}

.phone-foot small[b-piu0mty9h8] {
    margin-right: auto;
}

.meta-empty[b-piu0mty9h8] {
    padding: .85rem 0;
    color: #6d8090;
}

.template-list article[b-piu0mty9h8] {
    padding: .8rem 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: .65rem .75rem;
    border-top: 1px solid #dde5eb;
}

.template-summary[b-piu0mty9h8] {
    min-width: 0;
    display: grid;
}

.template-summary strong[b-piu0mty9h8] {
    overflow-wrap: anywhere;
}

.template-actions[b-piu0mty9h8] {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    gap: .45rem;
    flex-wrap: wrap;
}

.template-list em[b-piu0mty9h8] {
    color: #a83524;
    font-size: .75rem;
}

.danger[b-piu0mty9h8] {
    border-color: #e6a99f !important;
    color: #a83524 !important;
}

.danger.ghost[b-piu0mty9h8] {
    border-color: transparent !important;
}

.template-editor[b-piu0mty9h8] {
    margin-bottom: 1rem;
    padding: .9rem;
    display: grid;
    gap: .85rem;
    border: 1px solid #d8e1e8;
    border-radius: 10px;
    background: #f7f9fa;
}

.editor-grid[b-piu0mty9h8] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .65rem;
}

.template-editor textarea[b-piu0mty9h8] {
    font-family: ui-monospace, monospace;
    font-size: .75rem;
}

.example-upload[b-piu0mty9h8] {
    padding: .8rem;
    border: 1px dashed #bdccd6;
    border-radius: 8px;
}

.editor-actions[b-piu0mty9h8] {
    display: flex;
    justify-content: flex-end;
    gap: .5rem;
}

@media (max-width: 700px) {
    .editor-grid[b-piu0mty9h8] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Announcements.razor.rz.scp.css */
.announcement-editor[b-w3lp65v2ty],
.announcement-preview-shell[b-w3lp65v2ty],
.announcement-list[b-w3lp65v2ty] {
    padding: 1.5rem;
}

.announcement-list[b-w3lp65v2ty] {
    margin-top: 1.5rem;
}

.announcement-editor[b-w3lp65v2ty] {
    display: grid;
    gap: 1rem;
}

.announcement-panel-heading[b-w3lp65v2ty],
.announcement-editor-footer[b-w3lp65v2ty],
.announcement-actions[b-w3lp65v2ty] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.announcement-editor-footer[b-w3lp65v2ty] {
    align-items: flex-end;
}

.announcement-preview-backdrop[b-w3lp65v2ty] {
    min-height: 590px;
    margin-top: 1rem;
    padding: 2rem 1.25rem;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background:
        radial-gradient(circle at 12% 10%, rgba(111, 164, 255, .28), transparent 35%),
        linear-gradient(145deg, rgba(27, 16, 75, .96), rgba(54, 43, 124, .9)),
        #1d124d;
}

.announcement-preview[b-w3lp65v2ty] {
    width: min(100%, 430px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 26px 60px rgba(16, 13, 48, .3);
    text-align: left;
}

.announcement-preview-art[b-w3lp65v2ty] {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #fbfaf8;
}

.announcement-preview-content[b-w3lp65v2ty] {
    padding: 1.55rem;
}

.announcement-preview-kicker[b-w3lp65v2ty] {
    display: inline-flex;
    margin-bottom: .75rem;
    padding: .32rem .6rem;
    border-radius: 999px;
    color: #3e22b8;
    background: #efeaff;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.announcement-preview h2[b-w3lp65v2ty] {
    margin: 0;
    color: #24243b;
    font-size: 1.25rem;
    line-height: 1.3;
}

.announcement-preview p[b-w3lp65v2ty] {
    margin: .85rem 0 1.25rem;
    color: #65657d;
    font-size: .91rem;
    line-height: 1.48;
    white-space: pre-wrap;
}

.announcement-preview button[b-w3lp65v2ty] {
    width: 100%;
    padding: .8rem 1rem;
    border-radius: 12px;
    font-weight: 700;
}

.announcement-primary-action[b-w3lp65v2ty] {
    border: 0;
    color: #fff;
    background: linear-gradient(100deg, #3f21bd, #5792f8);
    box-shadow: 0 12px 24px rgba(63, 33, 189, .2);
}

.announcement-dismiss-action[b-w3lp65v2ty] {
    margin-top: .55rem;
    border: 1px solid #e8e4f3;
    color: #625d76;
    background: #fff;
}

.announcement-message-cell[b-w3lp65v2ty] {
    max-width: 560px;
}

.announcement-message-cell small[b-w3lp65v2ty] {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 700px) {
    .announcement-editor[b-w3lp65v2ty],
    .announcement-preview-shell[b-w3lp65v2ty],
    .announcement-list[b-w3lp65v2ty] {
        padding: 1rem;
    }

    .announcement-editor-footer[b-w3lp65v2ty],
    .announcement-panel-heading[b-w3lp65v2ty] {
        align-items: stretch;
        flex-direction: column;
    }
}
/* /Components/Pages/DesktopGoogleLogin.razor.rz.scp.css */
.desktop-google-shell[b-92uhubyag6] {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px 18px;
    background: linear-gradient(145deg, #f8f8ff 0%, #eff2ff 100%);
    color: #1e2238;
    font-family: "Inter", "Segoe UI", sans-serif;
}

.desktop-google-panel[b-92uhubyag6] {
    width: min(420px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 30px;
    border: 1px solid #e2e4ee;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(30, 34, 56, .10);
    text-align: center;
}

.desktop-google-brand[b-92uhubyag6] {
    display: flex;
    align-items: center;
    gap: 11px;
}

.desktop-google-brand img[b-92uhubyag6] {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.desktop-google-brand strong[b-92uhubyag6] {
    color: #21114f;
    font-size: 23px;
    letter-spacing: -.03em;
}

.desktop-google-brand strong span[b-92uhubyag6] {
    color: #5b8cff;
}

.desktop-google-kicker[b-92uhubyag6] {
    margin-top: 2px;
    color: #5b57e0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
}

.desktop-google-panel h1[b-92uhubyag6] {
    margin: 0;
    font-size: 25px;
}

.desktop-google-panel p[b-92uhubyag6] {
    margin: 0 0 4px;
    max-width: 340px;
    color: #68708b;
    line-height: 1.5;
}

.desktop-google-error[b-92uhubyag6] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #fecaca;
    border-radius: 12px;
    background: #fff1f2;
    color: #b42335;
    font-size: 14px;
}

.desktop-google-security[b-92uhubyag6] {
    margin-top: 4px;
    color: #7d849e;
    font-size: 12px;
    line-height: 1.45;
}

@media (max-width: 520px) {
    .desktop-google-panel[b-92uhubyag6] {
        padding: 26px 18px;
    }
}
