body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    color: #E2E8F0;
    min-height: 100vh;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    overflow: hidden;
    box-shadow:
        -3px 0 3px #5ce2e7,
        3px 0 3px #a534c2,
        0 -3px 3px #5ce2e7,
        0 3px 3px #a534c2;
}

.navbar-glass {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-brand {
    font-weight: 700;
    color: #38bdf8 !important;
    letter-spacing: 1.5px;
}

.nav-link {
    color: #cbd5e1 !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #38bdf8 !important;
    transform: translateY(-2px);
}

.btn-primary-custom {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
    color: white;
}

.auth-container {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
}

.form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-radius: 12px;
    padding: 12px 15px;
    transition: all 0.3s;
}

.form-control:focus {
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2);
    border-color: #38bdf8 !important;
}

.form-label {
    font-weight: 500;
    color: #94a3b8;
}

/* Datatables Styles */
table.dataTable {
    color: #e2e8f0;
    border-collapse: separate;
    border-spacing: 0;
}

.table>:not(caption)>*>* {
    background: transparent;
    border-bottom-color: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing {
    color: #cbd5e1;
    margin-bottom: 15px;
}

.pagination .page-link {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.pagination .page-item.active .page-link {
    background-color: #0ea5e9;
    border-color: #0ea5e9;
}

.badge-method {
    background: rgba(56, 189, 248, 0.2);
    color: #38bdf8;
    border-radius: 8px;
    padding: 5px 10px;
    font-weight: 600;
}

.badge-status-200 {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.badge-status-error {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.text-primary {
    color: #5ce2e7 !important;
}

.text-logo-primary {
    color: #38bdf8;
}

.text-logo-secondary {
    color: #a534c2;
}

.input-dark {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.check-dark {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
}

#nav-logo {
    height: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    opacity: 0.8;
}

.bg-modal-dark {
    background: rgba(15, 23, 42, 0.95);
}

.modal-content .bg-dark {
    max-height: 250px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-purple {
    color: #6f42c1;
}