@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

html, body {
    font-family: 'Inter', sans-serif !important;
    background-color: #0b0c10 !important;
    color: #e5e7eb !important;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif !important;
    color: #ffffff !important;
    font-weight: 600;
}

a, .btn-link {
    color: #6366f1 !important;
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: #a855f7 !important;
}

/* Sidebar Custom Styling */
.sidebar {
    background-image: linear-gradient(180deg, #111218 0%, #0b0c10 100%) !important;
    border-right: 1px solid #1f202e !important;
}

.sidebar .navbar-brand {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.3rem !important;
}

.sidebar .nav-link {
    color: #9ca3af !important;
    border-radius: 8px !important;
    margin: 4px 8px !important;
    transition: all 0.2s ease-in-out !important;
}

.sidebar .nav-link:hover {
    color: #ffffff !important;
    background-color: rgba(99, 102, 241, 0.1) !important;
}

.sidebar .nav-link.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.2)) !important;
    border-left: 3px solid #6366f1 !important;
}

.top-row {
    background-color: rgba(17, 18, 24, 0.7) !important;
    backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid #1f202e !important;
    color: #e5e7eb !important;
}

.top-row a {
    color: #9ca3af !important;
}

.top-row a:hover {
    color: #ffffff !important;
}

/* Glassmorphism Cards */
.card-premium {
    background: rgba(24, 25, 34, 0.65) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2) !important;
}

/* Premium Buttons */
.btn-premium-primary {
    background: linear-gradient(135deg, #6366f1, #a855f7) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4) !important;
    transition: all 0.3s ease !important;
}

.btn-premium-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.6) !important;
    filter: brightness(1.1);
}

.btn-premium-secondary {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #e5e7eb !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
}

.btn-premium-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Forms styling */
.form-control-premium {
    background-color: rgba(17, 18, 24, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    transition: all 0.2s ease !important;
}

.form-control-premium:focus {
    background-color: #111218 !important;
    border-color: #6366f1 !important;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2) !important;
    outline: none !important;
}

/* Premium Tables */
.table-premium {
    width: 100%;
    border-collapse: collapse;
    color: #e5e7eb;
}

.table-premium th {
    background-color: rgba(17, 18, 24, 0.6) !important;
    color: #9ca3af !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 16px;
    border-bottom: 2px solid #1f202e;
    text-align: left;
}

.table-premium td {
    padding: 16px;
    border-bottom: 1px solid #1f202e;
    transition: background-color 0.2s ease;
}

.table-premium tr:hover td {
    background-color: rgba(255, 255, 255, 0.02);
}

/* Gradient text */
.text-gradient {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Status Badges */
.badge-premium-active {
    background-color: rgba(16, 185, 129, 0.15) !important;
    color: #10b981 !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-premium-inactive {
    background-color: rgba(239, 68, 68, 0.15) !important;
    color: #ef4444 !important;
    border: 1px solid rgba(239, 68, 68, 0.3) !important;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-premium-pending {
    background-color: rgba(245, 158, 11, 0.15) !important;
    color: #f59e0b !important;
    border: 1px solid rgba(245, 158, 11, 0.3) !important;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}
