* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background: #f4f1ea;
    margin: 0;
    padding: 0;
}

.card-custom {
    border-radius: 1.25rem;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03), 0 1px 2px rgba(0,0,0,0.05);
    background: white;
    transition: all 0.2s;
}

.stat-card {
    border-top: 3px solid;
    border-radius: 1rem;
    background: white;
    transition: transform 0.1s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -12px rgba(0,0,0,0.1);
}

.bg-dark-accent {
    background: #1f3556;
}

.text-gold {
    color: #b89a5b;
}

.bg-gold-light {
    background: #faf6ed;
}

.btn-dark-accent {
    background: #1f3556;
    color: white;
    border-radius: 2rem;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
}

.btn-dark-accent:hover {
    background: #0f2a46;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(31,53,86,0.25);
    color: white;
}

.btn-outline-accent {
    border: 1px solid #1f3556;
    color: #1f3556;
    border-radius: 2rem;
    font-weight: 500;
    background: transparent;
}

.btn-outline-accent:hover {
    background: #1f3556;
    color: white;
}

.employee-row {
    background: #fefcf8;
    border-radius: 1rem;
    transition: all 0.1s;
    border: 1px solid #f0ede5;
    margin-bottom: 0.75rem;
    padding: 1rem;
}

.employee-row:hover {
    border-color: #d4cdbc;
    background: #fffdf9;
}

.badge-role {
    background: #e9e3d6;
    color: #5a4a2e;
    font-weight: 500;
    padding: 0.25rem 0.65rem;
    border-radius: 2rem;
    font-size: 0.7rem;
}

.bump-btn {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    font-weight: 800;
    transition: 0.1s;
}

.toast-container-custom {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1100;
}

.nav-tabs .nav-link.active {
    background-color: #1f3556;
    color: white;
    border-color: #1f3556;
}

.nav-tabs .nav-link {
    color: #1f3556;
    font-weight: 500;
    cursor: pointer;
}

.nav-tabs .nav-link:hover {
    border-color: #b89a5b;
    color: #b89a5b;
}

.tab-pane {
    padding-top: 1.25rem;
}

hr {
    opacity: 0.3;
}

.pro-badge {
    font-size: 0.65rem;
    background: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
    .employee-row .row > div {
        margin-bottom: 0.5rem;
    }
    
    .stat-card .fs-2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast {
    animation: slideIn 0.25s ease;
}

.btn-dark-accent:active {
    transform: translateY(1px);
}

input:focus, select:focus, button:focus {
    outline: 2px solid #b89a5b;
    outline-offset: 2px;
}