/* Override colori Bootstrap con tema Granata/Bianco/Nero */

/* Bottoni primari */
.btn-primary {
    background-color: #8B1538;
    border-color: #8B1538;
}

.btn-primary:hover {
    background-color: #6d1129;
    border-color: #6d1129;
}

.btn-primary:active,
.btn-primary:focus {
    background-color: #6d1129 !important;
    border-color: #6d1129 !important;
    box-shadow: 0 0 0 0.25rem rgba(139, 21, 56, 0.5) !important;
}

/* Badge primari */
.badge.bg-primary {
    background-color: #8B1538 !important;
}

/* Link */
a {
    color: #8B1538;
}

a:hover {
    color: #6d1129;
}

/* Card header */
.card-header.bg-primary {
    background-color: #8B1538 !important;
}

/* Alert primari */
.alert-primary {
    background-color: rgba(139, 21, 56, 0.1);
    border-color: #8B1538;
    color: #6d1129;
}

/* Testo primario */
.text-primary {
    color: #8B1538 !important;
}

/* Background primario */
.bg-primary {
    background-color: #8B1538 !important;
}

/* Border primario */
.border-primary {
    border-color: #8B1538 !important;
}

/* Form focus */
.form-control:focus,
.form-select:focus {
    border-color: #a91c44;
    box-shadow: 0 0 0 0.25rem rgba(139, 21, 56, 0.25);
}

/* Icone primarie */
.bi.text-primary {
    color: #8B1538 !important;
}

/* Liste */
.list-group-item.active {
    background-color: #8B1538;
    border-color: #8B1538;
}

