/* Bevilege Dashboard Custom Styles */
/* Brand Colors:
   Primary: #9678B8
   Secondary: #D3AE3C  
   Background: #E0E3E7
   Light Secondary: #A192B2
*/

/* Override Bootstrap primary color */
.btn-primary {
    background-color: #9678B8 !important;
    border-color: #9678B8 !important;
    color: white !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #A192B2 !important;
    border-color: #A192B2 !important;
    color: white !important;
}

.btn-outline-primary {
    color: #9678B8 !important;
    border-color: #9678B8 !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: #9678B8 !important;
    border-color: #9678B8 !important;
    color: white !important;
}

/* Secondary buttons */
.btn-secondary {
    background-color: #A192B2 !important;
    border-color: #A192B2 !important;
    color: white !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: #9678B8 !important;
    border-color: #9678B8 !important;
    color: white !important;
}

/* Success buttons with brand primary */
.btn-success {
    background-color: #9678B8 !important;
    border-color: #9678B8 !important;
    color: white !important;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    background-color: #A192B2 !important;
    border-color: #A192B2 !important;
    color: white !important;
}

/* Info elements with secondary brand color */
.bg-info {
    background-color: #D3AE3C !important;
    color: white !important;
}

.text-primary {
    color: #9678B8 !important;
}

/* Form elements */
.form-control:focus,
.form-select:focus {
    border-color: #9678B8 !important;
    box-shadow: 0 0 0 0.25rem rgba(150, 120, 184, 0.25) !important;
}

/* Card headers */
.card-header.bg-primary {
    background-color: #9678B8 !important;
    border-color: #9678B8 !important;
}

.card-header.bg-secondary {
    background-color: #A192B2 !important;
    border-color: #A192B2 !important;
}

.card-header.bg-info {
    background-color: #D3AE3C !important;
    border-color: #D3AE3C !important;
}

/* Alerts */
.alert-info {
    background-color: rgba(211, 174, 60, 0.1) !important;
    border-color: #D3AE3C !important;
    color: #856d1a !important;
}

.alert-success {
    background-color: rgba(150, 120, 184, 0.1) !important;
    border-color: #9678B8 !important;
    color: #5d4171 !important;
}

/* Navigation links */
.nav-link.active {
    background-color: #9678B8 !important;
    color: white !important;
}

.nav-link:hover {
    color: #9678B8 !important;
}

/* Tables */
.table-bordered th {
    background-color: #E0E3E7 !important;
    color: #9678B8 !important;
    font-weight: 600;
}

/* Custom utility classes */
.bg-bevilege-primary {
    background-color: #9678B8 !important;
    color: white !important;
}

.bg-bevilege-secondary {
    background-color: #D3AE3C !important;
    color: white !important;
}

.bg-bevilege-light {
    background-color: #A192B2 !important;
    color: white !important;
}

.bg-bevilege-bg {
    background-color: #E0E3E7 !important;
}

.text-bevilege-primary {
    color: #9678B8 !important;
}

.text-bevilege-secondary {
    color: #D3AE3C !important;
}

/* Input groups */
.input-group-text {
    background-color: #E0E3E7 !important;
    border-color: #A192B2 !important;
    color: #9678B8 !important;
    font-weight: 500;
}

/* Pagination (if used) */
.page-link {
    color: #9678B8 !important;
}

.page-link:hover {
    color: #A192B2 !important;
    background-color: #E0E3E7 !important;
    border-color: #A192B2 !important;
}

.page-item.active .page-link {
    background-color: #9678B8 !important;
    border-color: #9678B8 !important;
}

/* Form switches */
.form-check-input:checked {
    background-color: #9678B8 !important;
    border-color: #9678B8 !important;
}

.form-check-input:focus {
    border-color: #A192B2 !important;
    box-shadow: 0 0 0 0.25rem rgba(150, 120, 184, 0.25) !important;
}

/* Badge styles */
.badge.bg-primary {
    background-color: #9678B8 !important;
}

.badge.bg-secondary {
    background-color: #A192B2 !important;
}

.badge.bg-info {
    background-color: #D3AE3C !important;
}
