/* Main Fonts and Styles Setup */
body {
    font-family: 'Inter', sans-serif;
    color: #2b303a;
    background-color: #f7fafc !important;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .font-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Gradient text colors */
.text-gradient {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-primary-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism navbar styling */
.navbar-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(230, 235, 240, 0.7);
    transition: all 0.3s ease;
}

/* Custom premium card */
.card-premium {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1.25rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.02), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    overflow: hidden;
}

.card-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
}

.card-premium-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(241, 245, 249, 1);
    padding: 1.5rem 1.5rem 1rem 1.5rem;
}

/* Custom Buttons */
.btn-primary {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%) !important;
    border: none !important;
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-premium {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #e2e8f0;
    font-weight: 500;
    padding: 0.6rem 1.25rem;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
}

.btn-premium:hover {
    background: #e2e8f0;
    color: #1e293b;
}

/* Status Badges */
.badge-status {
    padding: 0.5em 0.8em;
    font-weight: 600;
    border-radius: 50rem;
    font-size: 0.8rem;
    text-transform: capitalize;
}

.badge-pending {
    background-color: #fef3c7;
    color: #d97706;
}

.badge-approved {
    background-color: #d1fae5;
    color: #059669;
}

.badge-rejected {
    background-color: #fee2e2;
    color: #dc2626;
}

.badge-cancelled {
    background-color: #f1f5f9;
    color: #64748b;
}

.badge-paid {
    background-color: #d1fae5;
    color: #059669;
}

.badge-failed {
    background-color: #fee2e2;
    color: #dc2626;
}

/* Custom inputs styling */
.form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1.5px solid #e2e8f0;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

/* Stats dashboard container */
.stat-card {
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}

.stat-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    font-size: 1.5rem;
}

/* Micro-animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.4s ease forwards;
}
