.nav-link.active {
    background-color: rgb(30 41 59); /* slate-800 */
    color: #fff;
    font-weight: 600;
}
table.data {
    width: 100%;
    border-collapse: collapse;
}
table.data th {
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #64748b;
    padding: 10px 12px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
table.data td {
    padding: 12px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
}
table.data tbody tr:hover { background: #f8fafc; }
.badge { font-size: 11px; padding: 2px 8px; border-radius: 9999px; font-weight: 600; }
.badge-free { background: #f1f5f9; color: #475569; }
.badge-pro { background: #fef3c7; color: #92400e; }
.badge-business { background: #dbeafe; color: #1e40af; }
.toast-admin {
    position: fixed; top: 16px; right: 16px; z-index: 100;
    padding: 10px 16px; border-radius: 8px; color: white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    animation: slide-in 0.2s ease-out;
}
@keyframes slide-in { from { transform: translateX(100%); opacity: 0; } to { transform: none; opacity: 1; } }
