/* assets/css/style.css */

body {
    font-family: 'Inter', sans-serif;
    background-color: #F4F7F9;
    color: #334155;
}

/* Custom Navbar */
.navbar-custom {
    background-color: #1E293B;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 1rem 0;
}
.navbar-custom .navbar-brand {
    color: #F8FAFC;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Modern Cards */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 2rem;
}
.card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}
.card-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #F1F5F9;
    border-radius: 16px 16px 0 0 !important;
    padding: 1.25rem 1.5rem;
}
.card-header h5 {
    font-weight: 600;
    color: #0F172A;
    margin: 0;
}

/* Buttons */
.btn-custom-primary {
    background-color: #3B82F6;
    color: white;
    border-radius: 50rem;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    border: none;
    transition: all 0.2s;
}
.btn-custom-primary:hover {
    background-color: #2563EB;
    transform: translateY(-1px);
}

.btn-custom-success {
    background-color: #10B981;
    color: white;
    border-radius: 50rem;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    border: none;
    transition: all 0.2s;
}
.btn-custom-success:hover {
    background-color: #059669;
    transform: translateY(-1px);
}

/* Tables */
.table { margin-bottom: 0; }
.table thead th {
    background-color: #F8FAFC;
    color: #64748B;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    border-bottom: none;
    padding: 1rem 1.5rem;
}
.table tbody td {
    padding: 1.25rem 1.5rem;
    vertical-align: middle;
    border-bottom: 1px solid #F1F5F9;
    color: #475569;
}

/* Status Badges */
.badge {
    padding: 0.5em 0.8em;
    font-weight: 500;
    border-radius: 8px;
    letter-spacing: 0.3px;
}
.bg-status-success { background-color: #D1FAE5; color: #065F46; }
.bg-status-danger { background-color: #FEE2E2; color: #991B1B; }