/* _content/DevFlowMessaging.Web/Components/Accounts/Login.razor.rz.scp.css */
.login-root[b-xuxzj9g27t] {
    min-height: 100vh;
    width: 100%;
}

.login-grid[b-xuxzj9g27t] {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
}

.left-panel[b-xuxzj9g27t] {
    background: #1C1B1F; /* matches your DevFlow image background */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.brand-wrap[b-xuxzj9g27t] {
    text-align: center;
}

.brand-logo[b-xuxzj9g27t] {
    display: inline-block;
    position: relative;
}

.brand-dots[b-xuxzj9g27t] {
    position: absolute;
    top: -14px;
    left: 52%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
}

    .brand-dots span[b-xuxzj9g27t] {
        width: 14px;
        height: 14px;
        background: #28c1ff;
        border-radius: 999px;
        display: inline-block;
    }

.brand-name[b-xuxzj9g27t] {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1;
}

.brand-tagline[b-xuxzj9g27t] {
    margin-top: 14px;
    font-size: 14px;
    opacity: 0.95;
}

    .brand-tagline .accent[b-xuxzj9g27t] {
        color: #28c1ff;
        font-weight: 700;
    }

.right-panel[b-xuxzj9g27t] {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
}

.form-card[b-xuxzj9g27t] {
    width: min(560px, 92%);
}

.title[b-xuxzj9g27t] {
    font-weight: 800;
    color: #1b2a9a;
    margin-bottom: 6px;
}

.subtitle[b-xuxzj9g27t] {
    margin-bottom: 22px;
    color: rgba(0,0,0,0.65);
}

.alert[b-xuxzj9g27t] {
    margin-bottom: 14px;
}

.fields[b-xuxzj9g27t] {
    margin-top: 6px;
}

.btn-login[b-xuxzj9g27t] {
    border-radius: 999px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.btn-register[b-xuxzj9g27t] {
    border-radius: 999px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.forgot[b-xuxzj9g27t] {
    display: block;
    text-align: center;
    margin-top: 8px;
    color: #1b2a9a;
    font-weight: 600;
    text-decoration: none;
}

/* Responsive: hide left panel on small screens */
@media (max-width: 900px) {
    .login-grid[b-xuxzj9g27t] {
        grid-template-columns: 1fr;
    }

    .left-panel[b-xuxzj9g27t] {
        display: none;
    }
}
/* _content/DevFlowMessaging.Web/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-k01salfscm] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-k01salfscm] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/DevFlowMessaging.Web/Components/Whatsapp/WhatsAppConversationDialog.razor.rz.scp.css */
.conversation-dialog-shell[b-bh9x41omgp] {
    max-width: min(1120px, 96vw);
}

.conversation-dialog-header[b-bh9x41omgp] {
    gap: 16px;
    width: 100%;
    padding-bottom: 4px;
}

.conversation-dialog-avatar[b-bh9x41omgp] {
    box-shadow: 0 10px 24px rgba(25, 118, 210, 0.18);
}

.conversation-dialog-content[b-bh9x41omgp] {
    display: flex;
    flex-direction: column;
    padding-top: 0;
}

.conversation-scroll[b-bh9x41omgp] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 68vh;
    overflow-y: auto;
    scrollbar-gutter: stable;
    padding: 18px;
    background:
        radial-gradient(circle at top right, rgba(25, 118, 210, 0.05), transparent 28%),
        linear-gradient(180deg, rgba(249, 250, 251, 0.98), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
}

.message-date-separator[b-bh9x41omgp] {
    display: flex;
    justify-content: center;
    margin: 8px 0 2px;
}

.message-date-chip[b-bh9x41omgp] {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.message-row[b-bh9x41omgp] {
    display: flex;
}

.message-row.outgoing[b-bh9x41omgp] {
    justify-content: flex-start;
}

.message-row.incoming[b-bh9x41omgp] {
    justify-content: flex-end;
}

.message-bubble[b-bh9x41omgp] {
    max-width: min(72%, 760px);
    min-width: 220px;
    padding: 12px 14px;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.08);
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.message-row.outgoing .message-bubble[b-bh9x41omgp] {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.98));
    border-left: 4px solid rgba(25, 118, 210, 0.58);
}

.message-row.incoming .message-bubble[b-bh9x41omgp] {
    background: linear-gradient(180deg, rgba(236, 253, 245, 0.98), rgba(240, 249, 255, 0.98));
    border-right: 4px solid rgba(76, 175, 80, 0.55);
}

.message-top[b-bh9x41omgp] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.message-title[b-bh9x41omgp] {
    overflow-wrap: anywhere;
}

.message-body[b-bh9x41omgp] {
    line-height: 1.58;
    color: rgba(15, 23, 42, 0.92);
    overflow-wrap: anywhere;
}

.message-footer[b-bh9x41omgp] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.status-dot[b-bh9x41omgp] {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    display: inline-block;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
}

@media (max-width: 960px) {
    .conversation-dialog-shell[b-bh9x41omgp] {
        max-width: 100vw;
    }

    .conversation-scroll[b-bh9x41omgp] {
        max-height: 72vh;
        padding: 14px;
    }

    .message-bubble[b-bh9x41omgp] {
        max-width: 100%;
        min-width: 0;
    }
}
/* _content/DevFlowMessaging.Web/Components/Whatsapp/WhatsAppConversations.razor.rz.scp.css */
.whatsapp-conversations-shell[b-o7lpjg6531] {
    background:
        radial-gradient(circle at top right, rgba(25, 118, 210, 0.08), transparent 34%),
        radial-gradient(circle at bottom left, rgba(76, 175, 80, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.99));
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    overflow: hidden;
}

.conversations-header[b-o7lpjg6531] {
    gap: 16px;
}

.conversation-toolbar[b-o7lpjg6531] {
    justify-content: flex-end;
}

.conversation-grid[b-o7lpjg6531] {
    border-radius: 18px;
    overflow: hidden;
}

.conversation-grid[b-o7lpjg6531] (.mud-table-body .mud-table-row) {
    cursor: pointer;
}

.conversation-grid[b-o7lpjg6531] (.mud-table-body .mud-table-row:hover) {
    background: rgba(25, 118, 210, 0.035);
}

.conversation-grid[b-o7lpjg6531] (.mud-table-cell) {
    vertical-align: top;
    padding-top: 14px;
    padding-bottom: 14px;
}

.conversation-grid[b-o7lpjg6531] (.mud-table-head .mud-table-cell) {
    background: rgba(255, 255, 255, 0.92);
    color: rgba(15, 23, 42, 0.88);
    font-weight: 700;
}

.conversation-preview-cell[b-o7lpjg6531] {
    min-width: 0;
    gap: 4px;
}

.conversation-preview-title[b-o7lpjg6531] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.conversation-preview-body[b-o7lpjg6531] {
    color: rgba(15, 23, 42, 0.82);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
}

.status-dot[b-o7lpjg6531] {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    display: inline-block;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
}

.conversation-grid[b-o7lpjg6531] (.mud-data-grid-toolbar) {
    padding: 0;
}

@media (max-width: 960px) {
    .conversation-toolbar[b-o7lpjg6531] {
        justify-content: flex-start;
    }

    .conversations-header[b-o7lpjg6531] {
        align-items: flex-start;
    }

    .conversation-grid[b-o7lpjg6531] (.mud-table-cell) {
        white-space: normal;
    }
}
/* _content/DevFlowMessaging.Web/Components/Whatsapp/WhatsAppTemplatePhonePreview.razor.rz.scp.css */
.smartPhone[b-gkwgr7s4wy] {
    --phone-w: 240px; /* change this */
    --phone-h: 520px; /* change this */

    width: var(--phone-w);
    height: var(--phone-h);
    position: relative;
    border-radius: 34px;
    background: #f5f5f5;
    /* nicer border + shadow */
    box-shadow: 0 18px 40px rgba(0,0,0,.25), 0 0 0 2px rgba(0,0,0,.9); /* outer bezel line */
}

.topBar[b-gkwgr7s4wy] {
    position: absolute;
    left: 22%;
    right: 22%;
    top: 10px;
    height: 14px;
    border-radius: 999px;
    background: rgba(0,0,0,.85);
    z-index: 3;
}

.leftButton[b-gkwgr7s4wy], .rightButton[b-gkwgr7s4wy] {
    position: absolute;
    width: 4px;
    border-radius: 999px;
    background: rgba(0,0,0,.75);
    z-index: 2;
}
.leftButton[b-gkwgr7s4wy] {
    left: -3px;
}

.rightButton[b-gkwgr7s4wy] {
    right: -3px;
}


.firstBtn[b-gkwgr7s4wy] {
    top: 110px;
    height: 32px;
}

.secondBtn[b-gkwgr7s4wy] {
    top: 160px;
    height: 32px;
}

.rightButton[b-gkwgr7s4wy] {
    top: 135px;
    height: 48px;
}
.boundries[b-gkwgr7s4wy] {
    width: 100%;
    height: 100%;
    padding: 10px; /* bezel thickness */
    box-sizing: border-box;
}

.content[b-gkwgr7s4wy] {
    height: 100%;
    border-radius: 26px;
    background: #fff;
    overflow: hidden;
    position: relative;
    /* inner screen border */
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.10);
}

.mobileHeader[b-gkwgr7s4wy] {
    display: flex;
    align-items: center;
    padding: 5px;
    background-color: #f1f1f1;
    border-bottom: 1px solid #e0e0e0;
}

.meta-icon[b-gkwgr7s4wy] {
    margin-right: 10px;
}

.profile-image-preview[b-gkwgr7s4wy] {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover; /* important */
    overflow: hidden;
    display: block;
}

.meta-title[b-gkwgr7s4wy] {
    flex: 1;
}

.meta-title-heading[b-gkwgr7s4wy] {
    font-weight: bold;
    font-size: 10px;
}

.meta-title-sub-heading[b-gkwgr7s4wy] {
    font-size: 10px;
    color: grey;
}

.iframeSection[b-gkwgr7s4wy] {
    padding: 10px;
    height: calc(100% - 60px);
    overflow-y: auto;
}

.chat-container[b-gkwgr7s4wy] {
    padding: 10px;
    background-color: #DCF8C6;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
    font-size: 11px; /* was 9px */
}

.wa-template-body[b-gkwgr7s4wy] {
    line-height: 1.5;
}

/* ---- Preview extras (header/body/footer/buttons/vars) ---- */
.wa-header-text[b-gkwgr7s4wy] {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.wa-body[b-gkwgr7s4wy] {
    margin-top: 6px;
}

.wa-footer[b-gkwgr7s4wy] {
    margin-top: 8px;
    opacity: .7;
    font-size: 8.5px;
}

.wa-media[b-gkwgr7s4wy] {
    display: flex;
    gap: 6px;
    align-items: center;
    border: 1px dashed rgba(0,0,0,.25);
    border-radius: 10px;
    padding: 8px;
    margin-bottom: 8px;
    background: rgba(255,255,255,.45);
}

.wa-media-icon[b-gkwgr7s4wy] {
    font-size: 11px;
}

.wa-btns[b-gkwgr7s4wy] {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wa-btn[b-gkwgr7s4wy] {
    background: #fff;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 8px;
    padding: 6px 8px;
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.wa-btn-icon[b-gkwgr7s4wy] {
    font-size: 10px;
    opacity: .9;
}

.wa-var[b-gkwgr7s4wy] {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.2);
    background: rgba(255,255,255,.6);
    font-size: 8px;
    margin: 0 2px;
}

.wa-empty[b-gkwgr7s4wy] {
    opacity: .55;
}

.wa-action-sheet[b-gkwgr7s4wy] {
    margin-top: 6px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.10);
}

/* each button row */
.wa-action-row[b-gkwgr7s4wy] {
    padding: 10px 12px;
    text-align: center;
    font-weight: 600;
    color: #1a73e8; /* WhatsApp-ish blue */
    font-size: 11px;
    border-top: 1px solid rgba(0,0,0,0.10);
    background: #fff;
    user-select: none;
}

    /* first row shouldn't have a top border */
    .wa-action-row:first-child[b-gkwgr7s4wy] {
        border-top: none;
    }

/* keep the last row looking like the bottom of a card */
.wa-action-last[b-gkwgr7s4wy] {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
