:root {
    --bs-primary: #DB4A2B;
    --bs-dark: #091E34;
}

/* Primary Buttons */
.btn-primary {
    background-color: #DB4A2B !important;
    border-color: #DB4A2B !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #C03F24 !important; /* Darker shade for hover */
    border-color: #B03821 !important;
    color: #fff !important;
}

/* Active state for buttons */
.btn-primary:active {
    background-color: #A1331E !important;
    border-color: #911F16 !important;
}

/* Primary Text */
.text-primary {
    color: #DB4A2B !important;
}

.text-primary:hover {
    color: #B03821 !important;
}

/* Primary Background */
.bg-primary {
    background-color: #DB4A2B !important;
}

.bg-primary:hover {
    background-color: #C03F24 !important;
}

/* Dark Theme */
.bg-dark {
    background-color: #091E34 !important;
}

.bg-dark:hover {
    background-color: #061524 !important;
}

/* Links */
a.text-primary {
    color: #DB4A2B !important;
    text-decoration: none;
}

a.text-primary:hover {
    color: #B03821 !important;
    text-decoration: underline;
}

/* Navbar / Active Menu Items */
.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link:hover {
    color: #DB4A2B !important;
}

/* Form Controls */
.form-control:focus,
.form-select:focus {
    border-color: #DB4A2B !important;
    box-shadow: 0 0 5px rgba(219, 74, 43, 0.5) !important;
}

/* Primary Borders */
.border-primary {
    border-color: #DB4A2B !important;
}

/* Badges */
.badge-primary {
    background-color: #DB4A2B !important;
    color: #fff !important;
}

.badge-primary:hover {
    background-color: #C03F24 !important;
}

/* Alerts */
.alert-primary {
    background-color: rgba(219, 74, 43, 0.1) !important;
    border-color: #DB4A2B !important;
    color: #DB4A2B !important;
}

/* Checkboxes & Radio Buttons */
.form-check-input:checked {
    background-color: #DB4A2B !important;
    border-color: #DB4A2B !important;
}

/* Progress Bar */
.progress-bar {
    background-color: #DB4A2B !important;
}
