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

:root {
    --primary-bg: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --card-bg: rgba(255, 255, 255, 0.85);
    --card-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --card-border: 1px solid rgba(255, 255, 255, 0.4);
    --brand-color: #2575fc;
    --brand-gradient: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--primary-bg);
    min-height: 100vh;
    color: #2d3436;
}

/* Glassmorphism Cards */
.card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--card-border);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.2);
}

.card-header {
    background: var(--brand-gradient) !important;
    border-bottom: none;
    border-radius: 16px 16px 0 0 !important;
    color: white !important;
    font-weight: 600;
    padding: 1.25rem;
}

/* Navigation */
.navbar {
    background: var(--brand-gradient) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
}
.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
}

/* Inputs */
.form-control, .form-select {
    border-radius: 10px;
    border: 1px solid #dfe6e9;
    padding: 0.75rem 1rem;
    transition: all 0.3s;
}
.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(37, 117, 252, 0.25);
    border-color: var(--brand-color);
}

/* Buttons */
.btn {
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-primary {
    background: var(--brand-gradient);
    border: none;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #5c0fba 0%, #1c62d9 100%);
    box-shadow: 0 5px 15px rgba(37, 117, 252, 0.4);
    transform: translateY(-2px);
}
.btn-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border: none;
}
.btn-success:hover {
    box-shadow: 0 5px 15px rgba(56, 239, 125, 0.4);
    transform: translateY(-2px);
}

/* Tables */
.table-responsive {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}
.table {
    margin-bottom: 0;
}
.table thead th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    font-weight: 600;
    color: #495057;
}

/* Badges */
.badge {
    padding: 0.5em 0.8em;
    border-radius: 30px;
    font-weight: 500;
}
