/**
 * Custom Alert Styles for Bhubbles
 * Personnalisation des couleurs des alertes
 */

/* Alert Info - Bleu Bhubbles */
.alert-info {
    color: #2c5f7f;
    background-color: #e3f2fd;
    border-color: #559dd3;
    border-left: 4px solid #559dd3;
}

.alert-info hr {
    border-top-color: #559dd3;
}

.alert-info .alert-link {
    color: #1d4a68;
}

.alert-info i,
.alert-info .fas,
.alert-info .far {
    color: #559dd3;
}

/* Alert Danger - Rouge plus vif */
.alert-danger {
    color: #a71d2a;
    background-color: #ffe6e9;
    border-color: #e74c3c;
    border-left: 4px solid #e74c3c;
}

.alert-danger hr {
    border-top-color: #e74c3c;
}

.alert-danger .alert-link {
    color: #7a1620;
}

.alert-danger i,
.alert-danger .fas,
.alert-danger .far {
    color: #e74c3c;
}

/* Alert Success - Vert harmonieux */
.alert-success {
    color: #1e6e3c;
    background-color: #e8f5e9;
    border-color: #4caf50;
    border-left: 4px solid #4caf50;
}

.alert-success hr {
    border-top-color: #4caf50;
}

.alert-success .alert-link {
    color: #155226;
}

.alert-success i,
.alert-success .fas,
.alert-success .far {
    color: #4caf50;
}

/* Alert Warning - Orange/Jaune */
.alert-warning {
    color: #7f5e1e;
    background-color: #fff8e1;
    border-color: #ff9800;
    border-left: 4px solid #ff9800;
}

.alert-warning hr {
    border-top-color: #ff9800;
}

.alert-warning .alert-link {
    color: #5f4616;
}

.alert-warning i,
.alert-warning .fas,
.alert-warning .far {
    color: #ff9800;
}

/* Amélioration générale des alertes */
.alert {
    border-radius: 0.35rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Alertes centrées pour les pages d'opportunités */
.alert-opportunity-status {
    max-width: 90%;
    margin: 10px auto;
}

.alert strong {
    font-weight: 600;
}

.alert i.me-2,
.alert .fas.me-2,
.alert .far.me-2 {
    margin-right: 0.5rem;
    font-size: 1.1rem;
    vertical-align: middle;
}

/* Responsive */
@media (max-width: 768px) {
    .alert {
        font-size: 0.9rem;
        padding: 0.875rem 1rem;
    }
}
