
.bg-success {
    background-color: #1a6d47 !important;
}
:root {
    --brand-primary: #0f4c33;
    --brand-primary-light: #1a6d47;
    --brand-secondary: #ffc107;
    --brand-light: #f8f9fa;
    --brand-dark: #0a3524;
    --transition: all 0.3s ease;
}


body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.5px;
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .035) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .075) !important;
}

.card {
    border: none;
}

.rounded-4 {
    border-radius: 1rem !important;
}

.form-control:focus,
.form-select:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.table> :not(caption)>*>* {
    padding: 1rem 0.5rem;
}

.avatar-circle {
    transition: all 0.3s ease;
}

.card:hover .avatar-circle {
    transform: scale(1.05);
}

/* Soft Card Designs */
.card-soft-primary {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 1px solid #bbdefb;
}

.card-soft-danger {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 1px solid #ffcdd2;
}

.card-soft-success {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 1px solid #c8e6c9;
}

.card-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}

/* Custom Scrollbar for tables */
.table-responsive::-webkit-scrollbar {
    height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

/* Toast/Popup Notifications */
.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 250px;
    max-width: 350px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/* Footer */
.footer {
    background: var(--brand-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--brand-secondary);
    padding-left: 5px;
}


        /* Enhanced Navbar */
        .navbar {
            background: rgba(15, 76, 51, 0.98);
            backdrop-filter: blur(12px);
            padding: 1rem 0;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
        }
        
        .navbar-brand svg {
            width: 28px;
            height: 28px;
        }
        
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            transition: var(--transition);
        }
        
        .nav-link:hover {
            color: var(--brand-secondary) !important;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }