/* ========================================
   СТИЛИ УВЕДОМЛЕНИЙ
   ======================================== */

.alert {
    padding: var(--space-4);
    border-radius: var(--radius10);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}
.alert-icon {
    font-size: 20px;
}
.alert-content {
    flex: 1;
}
.alert-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.alert-message {
    margin: 0;
    font-size: var(--txt14);
}
