/* /Components/DashBoard/EnvelopeList.razor.rz.scp.css */
.envelope-container[b-nxsxkpaung] {
    display: flex;
    min-height: 100vh;
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Sidebar */
.counts-sidebar[b-nxsxkpaung] {
    width: 260px;
    background: white;
    border-right: 1px solid #e9ecef;
    padding: 24px 0;
}

.counts-header h3[b-nxsxkpaung] {
    margin: 0 0 20px 0;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    letter-spacing: 0.5px;
}

.counts-list[b-nxsxkpaung] {
    display: flex;
    flex-direction: column;
}

.count-item[b-nxsxkpaung] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

    .count-item:hover[b-nxsxkpaung] {
        background-color: #f8f9fa;
    }

    .count-item.active[b-nxsxkpaung] {
        background-color: #e7f1ff;
        border-right: 3px solid #0d6efd;
    }

.count-label[b-nxsxkpaung] {
    color: #495057;
}

.count-number[b-nxsxkpaung] {
    font-weight: 600;
    color: #212529;
}

.count-item.active .count-label[b-nxsxkpaung],
.count-item.active .count-number[b-nxsxkpaung] {
    color: #0d6efd;
}

/* Main Content */
.envelope-content[b-nxsxkpaung] {
    flex: 1;
    padding: 24px 32px;
}

.envelope-header[b-nxsxkpaung] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.header-title-section h2[b-nxsxkpaung] {
    margin: 0 0 4px 0;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.subtitle[b-nxsxkpaung] {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}

.search-bar input[b-nxsxkpaung] {
    padding: 8px 16px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 14px;
    width: 280px;
    background: white;
}

    .search-bar input:focus[b-nxsxkpaung] {
        outline: none;
        border-color: #0d6efd;
        box-shadow: 0 0 0 2px rgba(13,110,253,0.1);
    }

/* Loading */
.loading-container[b-nxsxkpaung] {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.loading-spinner[b-nxsxkpaung] {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 2px solid #e9ecef;
    border-top-color: #0d6efd;
    border-radius: 50%;
    animation: spin-b-nxsxkpaung 0.6s linear infinite;
    margin-bottom: 12px;
}

@keyframes spin-b-nxsxkpaung {
    to {
        transform: rotate(360deg);
    }
}

/* Table */
.table-container[b-nxsxkpaung] {
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    overflow-x: auto;
}

.envelope-table[b-nxsxkpaung] {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

    .envelope-table thead th[b-nxsxkpaung] {
        text-align: left;
        padding: 14px 16px;
        background-color: #f8f9fa;
        color: #6c757d;
        font-weight: 600;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 1px solid #e9ecef;
    }

    .envelope-table tbody td[b-nxsxkpaung] {
        padding: 16px;
        border-bottom: 1px solid #f0f0f0;
        vertical-align: top;
    }

    .envelope-table tbody tr:hover[b-nxsxkpaung] {
        background-color: #f8f9fa;
    }

/* Subject Column */
.col-subject[b-nxsxkpaung] {
    min-width: 320px;
}

.subject-title[b-nxsxkpaung] {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
    margin-bottom: 6px;
}

.subject-participants[b-nxsxkpaung] {
    font-size: 12px;
    color: #7f8c8d;
    margin-bottom: 6px;
}

.sender-name[b-nxsxkpaung] {
    font-weight: 500;
    color: #34495e;
}

.separator[b-nxsxkpaung] {
    margin: 0 4px;
    color: #bdc3c7;
}

.recipient-names[b-nxsxkpaung] {
    color: #7f8c8d;
}

.deleted-badge[b-nxsxkpaung] {
    font-size: 11px;
    color: #e74c3c;
    background-color: #fdeaea;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Status Column */
.col-status[b-nxsxkpaung] {
    width: 100px;
}

.status-badge[b-nxsxkpaung] {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: lowercase;
}

.status-pending[b-nxsxkpaung] {
    background-color: #fff3e0;
    color: #e67e22;
}

.status-sent[b-nxsxkpaung] {
    background-color: #e3f2fd;
    color: #3498db;
}

.status-completed[b-nxsxkpaung] {
    background-color: #e8f5e9;
    color: #27ae60;
}

.status-declined[b-nxsxkpaung] {
    background-color: #fdeaea;
    color: #e74c3c;
}

.status-deleted[b-nxsxkpaung] {
    background-color: #f5f5f5;
    color: #95a5a6;
}

/* Date Columns */
.col-date[b-nxsxkpaung] {
    width: 100px;
    white-space: nowrap;
}

    .col-date div:first-child[b-nxsxkpaung] {
        color: #495057;
    }

.time-text[b-nxsxkpaung] {
    font-size: 11px;
    color: #adb5bd;
    margin-top: 2px;
}

/* Pagination */
.pagination-container[b-nxsxkpaung] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 16px 0;
}

.pagination-info[b-nxsxkpaung] {
    font-size: 14px;
    color: #6c757d;
}

.pagination-controls[b-nxsxkpaung] {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .pagination-controls select[b-nxsxkpaung] {
        padding: 6px 10px;
        border: 1px solid #dee2e6;
        border-radius: 6px;
        font-size: 13px;
        background: white;
    }

.page-btn[b-nxsxkpaung] {
    width: 32px;
    height: 32px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

    .page-btn:hover:not(:disabled)[b-nxsxkpaung] {
        background-color: #0d6efd;
        color: white;
        border-color: #0d6efd;
    }

    .page-btn:disabled[b-nxsxkpaung] {
        opacity: 0.5;
        cursor: not-allowed;
    }

.page-number[b-nxsxkpaung] {
    font-size: 14px;
    color: #495057;
    font-weight: 500;
}

.no-data[b-nxsxkpaung] {
    text-align: center;
    padding: 40px;
    color: #adb5bd;
}

/* Responsive */
@media (max-width: 768px) {
    .envelope-container[b-nxsxkpaung] {
        flex-direction: column;
    }

    .counts-sidebar[b-nxsxkpaung] {
        width: 100%;
    }

    .envelope-content[b-nxsxkpaung] {
        padding: 16px;
    }

    .envelope-header[b-nxsxkpaung] {
        flex-direction: column;
        gap: 16px;
    }

    .search-bar input[b-nxsxkpaung] {
        width: 100%;
    }
}
/* /Components/DashBoard/NewDashboard.razor.rz.scp.css */
.dashboard-page[b-1qve874gl4] {
    padding: 24px;
    background: #f8fafc;
    min-height: 100vh;
}

/* ===== Header ===== */
.dashboard-header[b-1qve874gl4] {
    margin-bottom: 20px;
}

    .dashboard-header h1[b-1qve874gl4] {
        font-size: 48px;
        font-weight: 700;
        margin: 0;
    }

    .dashboard-header p[b-1qve874gl4] {
        margin-top: 6px;
        color: #64748b;
    }

/* ===== Quick Actions ===== */
.quick-actions[b-1qve874gl4] {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

/* ===== Stats ===== */
.stats-grid[b-1qve874gl4] {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.stat-card[b-1qve874gl4] {
    background: white !important;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 110px;
}

/* ===== Charts ===== */
.chart-grid[b-1qve874gl4] {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.chart-card[b-1qve874gl4] {
    background: white !important;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    height: 380px;
    overflow: hidden;
}

    .chart-card canvas[b-1qve874gl4] {
        width: 100% !important;
        height: 280px !important;
        max-height: 280px !important;
    }


.dashboard-table[b-1qve874gl4] {
    width: 100%;
    border-collapse: collapse;
}

    .dashboard-table thead[b-1qve874gl4] {
        background: #f8fafc;
    }

    .dashboard-table th[b-1qve874gl4] {
        text-align: left;
        padding: 16px 24px;
        font-size: 12px;
        color: #64748b;
        font-weight: 600;
    }

    .dashboard-table td[b-1qve874gl4] {
        padding: 16px 24px;
        border-top: 1px solid #f8fafc;
    }

    .dashboard-table tbody tr[b-1qve874gl4] {
        transition: background 0.2s ease;
    }

        .dashboard-table tbody tr:hover[b-1qve874gl4] {
            background: #f8fafc;
            cursor: pointer;
        }
/* ===== Tables ===== */
.table-grid[b-1qve874gl4] {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


.table-header[b-1qve874gl4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    border-bottom: 1px solid #f1f5f9;
}

.view-all[b-1qve874gl4] {
    color: #4f46e5;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.table-card[b-1qve874gl4] {
    background: white;
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* ===== Dropdown ===== */
.dashboard-select[b-1qve874gl4] {
    border: 1px solid #dbe2ea;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 14px;
    background: white;
    min-width: 140px;
}

.card-header[b-1qve874gl4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.status-pill[b-1qve874gl4] {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
}

.success[b-1qve874gl4] {
    background: #dcfce7;
    color: #16a34a;
}

.warning[b-1qve874gl4] {
    background: #fef3c7;
    color: #d97706;
}

.info[b-1qve874gl4] {
    background: #dbeafe;
    color: #2563eb;
}

.danger[b-1qve874gl4] {
    background: #fee2e2;
    color: #dc2626;
}
/* /Pages/Users/UserListing.razor.rz.scp.css */
body[b-lmi9l2zqlz] {
}

.pagination-body ul li.page-item .page-link[b-lmi9l2zqlz] {
    background: #e0e0e0;
    border-radius: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    color: #000000;
}

.pagination > li[b-lmi9l2zqlz] {
    margin-right: 5px;
}

.pagination > li:last-child[b-lmi9l2zqlz] {
    margin: 0px;
}

.pagination-body ul li.page-item .page-link.bg-transparent.border-none[b-lmi9l2zqlz] {
    border: none;
    color: #9e9e9e;
}

.pagination-body .pagination[b-lmi9l2zqlz] {
    display: flex;
    align-items: center;
}

.pagination-body ul li.page-item.active .page-link[b-lmi9l2zqlz] {
    background: #1b6dba;
    color: #ffffff;
}

.pagination-body[b-lmi9l2zqlz] {
    margin-top: 20px;
}
.settingmaincontainer.application-setting-container.left-pannel[b-lmi9l2zqlz] {
    width: 100%;
}

.settingmaincontainer.application-setting-container.left-pannel[b-lmi9l2zqlz] {
    padding-left: 0 !important;
    padding-right: 0;
}

section.my-section-1.section-user-table[b-lmi9l2zqlz] {
    max-width: 100%;
}

section.my-section-1.section-user-table[b-lmi9l2zqlz] {
    max-width: 100%;
}
