/* =====================================================
   CSS VARIABLES (variables.css)
===================================================== */

/* Bootstrap override */
:root {
    /* Bootstrap Variables */
    --bs-primary: #5D913F;
    --bs-info: #5D913F;
    --bs-success: #5D913F;
    --bs-warning: #E8C927;
    --bs-danger: #dc3545;

    /* Primary Colors */
    --primary-color: #5D913F;
    --primary-dark: #4b7a33;
    --primary-light: #6BA545;

    /* Secondary Colors */
    --secondary-color: #E8C927;
    --secondary-dark: #d4b322;
    --secondary-light: #f5de6e;

    /* Header Colors */
    --header-bg-white: #ffffff;
    --header-bg-green: #5D913F;
    --header-text-black: #333333;
    --header-text-white: #ffffff;

    /* Utility Colors */
    --success-color: #28a745;
    --info-color: #5D913F;
    --warning-color: #ffc107;
    --danger-color: #dc3545;

    /* Text Colors */
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-light: #f8f9fa;

    /* Background Colors */
    --bg-light: #f8f9fa;
    --bg-dark: #343a40;
    --bg-gray: #e9ecef;

    /* Border Colors */
    --border-color: #dee2e6;
    --border-light: #f1f1f1;

    /* Shadow Variables */
    --shadow-sm: 0 .125rem .25rem rgba(0,0,0,.075);
    --shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    --shadow-lg: 0 1rem 3rem rgba(0,0,0,.175);

    /* Transition */
    --transition: all 0.3s ease;
    
    /* Helper Variables */
    --green: #5D913F;
    --yellow: #E8C927;
}