/* ========================================
   Global Styles
   ======================================== */
:root {
    /* Green Color Palette */
    --fruit-salad: #4fa94e;
    --de-york: #77bb7c;
    --black-bean: #08160e;
    --peppermint: #d8f0db;
    --everglade: #1e5521;
    --gossip: #a5f5a4;
    --goblin: #428346;
    --celtic: #112e17;
    
    /* Semantic Color Variables */
    --primary-color: #4fa94e;
    --primary-dark: #1e5521;
    --primary-light: #77bb7c;
    --secondary-color: #428346;
    --success-color: #4fa94e;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #77bb7c;
    --dark-bg: #08160e;
    --light-bg: #d8f0db;
    --accent-light: #a5f5a4;
    
    /* Gradients with green theme */
    --gradient-1: linear-gradient(135deg, #4fa94e 0%, #1e5521 100%);
    --gradient-2: linear-gradient(135deg, #77bb7c 0%, #428346 100%);
    --gradient-3: linear-gradient(135deg, #a5f5a4 0%, #4fa94e 100%);
    --gradient-4: linear-gradient(135deg, #d8f0db 0%, #77bb7c 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(8, 22, 14, 0.08);
    --shadow-md: 0 4px 16px rgba(8, 22, 14, 0.12);
    --shadow-lg: 0 8px 32px rgba(8, 22, 14, 0.16);
    --shadow-xl: 0 16px 48px rgba(8, 22, 14, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--black-bean);
    background: #f8fafc;
    overflow-x: hidden;
}

/* Primary font for headings */
h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6,
.navbar-brand,
.section-title,
.card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Ensure body text uses Inter */
p, span, a, button, input, textarea, select,
.btn, .form-control, .form-label, .badge,
.nav-link, .card-text {
    font-family: 'Inter', sans-serif;
}

/* ========================================
   Navbar Enhancements
   ======================================== */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(79, 169, 78, 0.95) !important;
    box-shadow: 0 4px 20px rgba(79, 169, 78, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* ========================================
   Announcement Bar
   ======================================== */
.announcement-bar {
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(90deg, #a5f5a4, #77bb7c, #a5f5a4);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
    box-shadow: 0 2px 10px rgba(119, 187, 124, 0.3);
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, #4fa94e 0%, #1e5521 100%);
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-100px) translateX(100px); }
}

.hero-section h1 {
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-section .lead {
    text-shadow: 1px 2px 4px rgba(0,0,0,0.2);
    font-size: 1.3rem;
}

.hero-section .btn {
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.hero-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.hero-section img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: transform 0.5s ease;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-section img:hover {
    transform: scale(1.05) rotate(2deg);
    animation: none;
}

/* ========================================
   Section Titles
   ======================================== */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, #4fa94e, #1e5521);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4fa94e, #1e5521);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(79, 169, 78, 0.4);
}

section {
    padding: 80px 0;
}

section:nth-child(even) {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* ========================================
   Feature Cards
   ======================================== */
.feature-card {
    background: white;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4fa94e, #1e5521);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-card i {
    transition: transform 0.3s ease;
    display: inline-block;
}

.feature-card:hover i {
    animation: bounce 0.6s ease infinite;
}

/* ========================================
   Event Cards
   ======================================== */
.event-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.event-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card:hover::after {
    opacity: 1;
}

.event-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.event-card img {
    transition: transform 0.5s ease;
    height: 200px;
    object-fit: cover;
}

.event-card:hover img {
    transform: scale(1.1);
}

.event-card .badge {
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
}

/* ========================================
   Team Cards
   ======================================== */
.team-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.social-links a {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #4fa94e, #1e5521);
    color: white;
    margin: 0 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(79, 169, 78, 0.3);
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 15px rgba(79, 169, 78, 0.5);
}

.social-links-footer a {
    transition: opacity 0.3s ease;
}

.social-links-footer a:hover {
    opacity: 0.7;
}

/* ========================================
   Dashboard Stats Cards
   ======================================== */
.stat-card {
    border-radius: 20px;
    transition: all 0.4s ease;
    border: none;
    box-shadow: var(--shadow-md);
    background: white;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    animation: pulse 1s ease infinite;
}

/* ========================================
   Activity Items
   ======================================== */
.activity-item {
    display: flex;
    align-items: start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-item i {
    font-size: 1.2rem;
    margin-top: 3px;
}

/* ========================================
   Achievement Badges
   ======================================== */
.achievement-badge {
    padding: 15px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.achievement-badge:hover {
    background: #e9ecef;
    transform: scale(1.05);
}

/* ========================================
   Leaderboard Podium
   ======================================== */
.podium-card {
    border-radius: 25px;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.podium-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.podium-card:hover::after {
    opacity: 1;
}

.podium-first {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
}

.podium-second {
    background: linear-gradient(135deg, #C0C0C0 0%, #A9A9A9 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(192, 192, 192, 0.4);
}

.podium-third {
    background: linear-gradient(135deg, #CD7F32 0%, #8B4513 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(205, 127, 50, 0.4);
}

.podium-card:hover {
    transform: translateY(-15px) scale(1.05);
}

.podium-first:hover {
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.6);
}

.podium-rank {
    margin-bottom: 20px;
}

.podium-card img {
    border: 4px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.podium-first img {
    animation: glow 2s ease-in-out infinite;
}

.podium-card:hover img {
    transform: scale(1.1);
}

/* ========================================
   Gallery Grid
   ======================================== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    display: block;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2.5rem;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   Member Cards
   ======================================== */
.member-card {
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.member-card img {
    height: 200px;
    object-fit: cover;
}

/* ========================================
   Tables
   ======================================== */
.table {
    border-radius: 15px;
    overflow: hidden;
}

.table thead {
    background: linear-gradient(135deg, #4fa94e, #1e5521);
    color: white;
}

.table thead th {
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 15px;
}

.table-hover tbody tr {
    transition: all 0.3s ease;
}

.table-hover tbody tr:hover {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.table tbody td {
    padding: 15px;
    vertical-align: middle;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    transition: all 0.3s ease;
    font-weight: 600;
    border-radius: 12px;
    padding: 10px 24px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.btn-primary {
    background: linear-gradient(135deg, #4fa94e, #1e5521);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e5521, #4fa94e);
}

.btn-outline-primary {
    border: 2px solid #4fa94e;
    color: #4fa94e;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #4fa94e, #1e5521);
    border-color: transparent;
    color: white;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* ========================================
   Forms
   ======================================== */
.form-control,
.form-select {
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #4fa94e;
    box-shadow: 0 0 0 4px rgba(79, 169, 78, 0.1);
    transform: translateY(-2px);
}

.form-label {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.card {
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

.badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.badge:hover {
    transform: scale(1.1);
}

.list-group-item {
    border: none;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.list-group-item:hover {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
    transform: translateX(5px);
}

/* ========================================
   Advanced Animations
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(102, 126, 234, 0.5); }
    50% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.8), 0 0 30px rgba(118, 75, 162, 0.6); }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
        min-height: 400px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .podium-card {
        margin-bottom: 20px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

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

/* ========================================
   Scrollbar Styling
   ======================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ========================================
   Particle Background Effect
   ======================================== */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: particleFloat 15s infinite ease-in-out;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* ========================================
   Loading Animation
   ======================================== */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.spinner {
    border: 3px solid rgba(79, 169, 78, 0.1);
    border-top-color: #4fa94e;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
}

/* ========================================
   Hover Lift Effect for All Cards
   ======================================== */
.card-hover-lift {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-hover-lift:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   Text Gradient Animation
   ======================================== */
.gradient-text {
    background: linear-gradient(90deg, #4fa94e, #1e5521, #4fa94e);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* ========================================
   Ripple Effect
   ======================================== */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
    width: 300px;
    height: 300px;
}

/* ========================================
   Typewriter Effect
   ======================================== */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: currentColor;
    margin-left: 2px;
    animation: blink 1s infinite;
}

/* ========================================
   Shine Effect
   ======================================== */
.shine {
    position: relative;
    overflow: hidden;
}

.shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.shine:hover::before {
    left: 100%;
}

/* ========================================
   Bootstrap Color Overrides
   ======================================== */
.bg-primary {
    background-color: #4fa94e !important;
    background: linear-gradient(135deg, #4fa94e, #1e5521) !important;
}

.text-primary {
    color: #4fa94e !important;
}

.border-primary {
    border-color: #4fa94e !important;
}

.badge.bg-primary {
    background: linear-gradient(135deg, #4fa94e, #1e5521) !important;
}

.alert-primary {
    background-color: #d8f0db !important;
    border-color: #77bb7c !important;
    color: #1e5521 !important;
}

.list-group-item-primary {
    background-color: #d8f0db !important;
    color: #1e5521 !important;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-color: white !important;
}
