/* ===== ADMIN TABLE ===== */
.newtable {
    min-width: 1300px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* Header */
.newtable thead {
    background: linear-gradient(135deg, #122e4d, #2563eb);
    color: #fff;
}

.newtable thead th {
    border: none;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 14px;
    text-transform: uppercase;
    font-size: 13px;
}

/* Body */
.newtable tbody td {
    padding: 14px;
    vertical-align: middle;
    border-color: #f1f1f1;
    font-size: 14px;
}

/* Hover */
.newtable-hover tbody tr:hover {
    background-color: #f8f9fa;
    transition: 0.2s;
}

/* Badges */
.badge.bg-success {
    font-size: small;
    background-color: #28a745 !important;
}

.badge.bg-danger {
    font-size: small;
    background-color: #dc3545 !important;
}

/* Action buttons */
.newtable .btn {
    padding: 5px 10px;
    font-size: 13px;
    border-radius: 6px;
}

.newtable .btn-warning {
    background: #ffc107;
    border: none;
    color: #000;
}

.newtable .btn-danger {
    background: #dc3545;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .newtable {
        font-size: 13px;
    }
}
