body {
    font-family: Hack;
}

/* Fix input-group padding in horizontal bordered forms */
.form-horizontal.form-bordered .form-group > .input-group {
    padding: 0 !important;
}

/* Global color theme overrides */
:root {
    --bs-primary: #2d5f3f;
    --bs-primary-rgb: 45, 95, 63;
    --light-green: #5a9367;
    --green-primary: #2d5f3f;
}

/* Accordion styling */
.accordion-button:not(.collapsed) {
    background-color: #e8f5e9;
    color: #1a472a;
}

.accordion-button:focus {
    border-color: #5a9367;
    box-shadow: 0 0 0 0.25rem rgba(90, 147, 103, 0.25);
}

.accordion-button:hover {
    color: #5a9367;
}

.accordion-button:not(.collapsed)::after {
    filter: hue-rotate(210deg) brightness(0.8);
}

/* Button styling */
.btn-primary {
    background: linear-gradient(135deg, #2d5f3f, #1a472a) !important;
    border: 2px solid #5a9367 !important;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #1a472a, #0f2a19) !important;
    border-color: #5a9367 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(90, 147, 103, 0.4);
}

.btn-outline-primary {
    color: #2d5f3f !important;
    border-color: #2d5f3f !important;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    background: transparent !important;
}

.btn-outline-primary:hover {
    background: #2d5f3f !important;
    border-color: #d4af37 !important;
    color: white !important;
}

/* Link styling */
a {
    color: #2d5f3f;
    text-decoration: none;
}

a:hover {
    color: #1a472a;
}

/* Footer specific link styling */
.footer-public a {
    color: #718096;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.footer-public a:hover {
    color: #2d5f3f;
}

.footer-bottom a {
    display: inline;
    margin-bottom: 0;
}

