:root {
    --primary-color: #014d4e;
    /* Deep Teal/Green from Luppo Logo */
    --secondary-color: #a7c4c4;
    /* Sage/Dusty Blue from Haxagon Background */
    --accent-color: #f6e6d5;
    /* Cream from the Wolf */
    --dark-color: #0d1b1e;
    --light-bg: #f7f9f9;
    --card-shadow: 0 10px 40px rgba(1, 77, 78, 0.08);
}

body {
    background-color: var(--light-bg);
    font-family: 'Outfit', sans-serif;
    color: var(--dark-color);
}

.navbar {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 12px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #de5d4f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 112, 98, 0.4);
}

.card {
    border: none;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.sidebar {
    background: white;
    height: 100vh;
    border-radius: 0 24px 24px 0;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.03);
}

.summary-card {
    background: linear-gradient(135deg, #f77062 0%, #fe9a8b 100%);
    color: white;
}

.table thead th {
    border-top: none;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.badge-custom {
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 500;
}