@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --army-primary: #2d3e2f;
    --army-light: #3e5240;
    --dyc-red: #d32f2f;
    --dyc-gold: #c5a059;
    --bg-body: #f4f7f6;
    --text-dark: #2c3e50;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-dark);
}

.navbar {
    background: linear-gradient(135deg, var(--army-primary) 0%, #1b261d 100%) !important;
    border-bottom: 3px solid var(--dyc-gold);
}

.btn-army {
    background-color: var(--army-primary);
    color: white;
    border: none;
    transition: 0.3s;
}
.btn-army:hover {
    background-color: var(--army-light);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-army {
    border: 2px solid var(--army-primary);
    color: var(--army-primary);
}
.btn-outline-army:hover {
    background-color: var(--army-primary);
    color: white;
}

.main-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: none;
}

.text-army { color: var(--army-primary) !important; }
.text-gold { color: var(--dyc-gold) !important; }
.text-red { color: var(--dyc-red) !important; }
.bg-army-light { background: #e8f5e9; }
.bg-gold-light { background: #fff8e1; }
.bg-red-light { background: #ffebee; }

.icon-box {
    width: 60px; height: 60px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}

/* DataTables Styling Override */
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: var(--army-primary) !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
}

/* Label Styling */
.filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    text-transform: uppercase;
}