/* Custom CSS for Email Manager - Bootstrap 5 compatible */

/* Utility classes */
.text-nowrap {
    white-space: nowrap;
}

/* Table email specific styles */
.table-email {
    font-size: 0.875rem;
}

.table-email thead th,
.table-email tbody td {
    padding: 0.5rem 0.75rem;
}

/* Alert dismissible padding */
.alert-dismissible {
    padding-right: 3rem;
}

/* Badge styles */
.badge {
    display: inline-block;
    padding: 0.25em 0.6em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

.badge-primary {
    background-color: #0d6efd;
    color: #fff;
}

.badge-success {
    background-color: #198754;
    color: #fff;
}

.badge-danger {
    background-color: #dc3545;
    color: #fff;
}

.badge-warning {
    background-color: #ffc107;
    color: #000;
}

.badge-info {
    background-color: #0dcaf0;
    color: #000;
}

.badge-secondary {
    background-color: #6c757d;
    color: #fff;
}

/* Ensure body can scroll */
body {
    overflow-y: auto !important;
    overflow-x: auto !important;
}

/* Ensure table container can scroll */
.overflow-x-auto {
    overflow-x: auto !important;
    overflow-y: visible !important;
}
