/* Import Font Modern */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --bg-color: #f4f6f9;
    --text-color: #495057;
}

body {
    background-color: var(--bg-color);
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    padding-top: 30px;
    padding-bottom: 50px;
}

h1 {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* Card Styling */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    margin-bottom: 25px;
    overflow: hidden;
    transition: transform 0.2s ease;
    background: #fff;
}

.card:hover {
    transform: translateY(-3px);
}

.card-header {
    border-bottom: none;
    padding: 15px 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1.05rem;
}

/* Custom Gradients */
.bg-gradient-primary {
    background: var(--primary-gradient) !important;
}

.bg-gradient-success {
    background: var(--success-gradient) !important;
}

/* Table Styling */
.table-responsive {
    border-radius: 0 0 15px 15px;
}

.table thead th {
    border-top: none;
    border-bottom: 2px solid #eef2f7;
    background-color: #f8f9fa;
    color: #6c757d;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px;
    font-weight: 600;
}

.table tbody td {
    vertical-align: middle;
    padding: 15px;
    border-bottom: 1px solid #f2f4f8;
    color: #495057;
}

.table-hover tbody tr:hover {
    background-color: #ffffff;
    transform: scale(1.01);
    transition: all 0.2s ease-in-out;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    z-index: 1;
    position: relative;
}

/* Form & Buttons */
.form-control, .form-select {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 3px rgba(118, 75, 162, 0.2);
    border-color: #764ba2;
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(118, 75, 162, 0.4);
    filter: brightness(1.1);
}

.badge {
    padding: 8px 12px;
    border-radius: 30px;
    font-weight: 500;
}