.alert {
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 24px;
    border: 1px solid #f5c6cb;
    background-color: #fff3f4;
    border-left: 5px solid #dc3545;
}

.alert .alert-heading {
    color: #721c24;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.alert .alert-message {
    color: #721c24;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.alert .alert-action {
    color: #856404;
    font-size: 13px;
    margin-bottom: 0;
    font-style: italic;
}

.alert .alert-icon {
    font-size: 22px;
    margin-right: 10px;
    vertical-align: middle;
}

.alert .alert-header {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

/* Info Message Alert */
.info-alert {
    border-radius: 12px;
    margin-bottom: 24px;
    border: none;
    background: linear-gradient(to right, #f8f9ff, #ffffff);
    border-left: 4px solid #3f51b5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.info-alert .info-alert-body {
    display: flex;
    align-items: center;
    padding: 20px 24px;
}

.info-alert .info-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: rgba(63, 81, 181, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-alert .info-icon {
    color: #3f51b5;
    font-size: 1.4rem;
}

.info-alert .info-content {
    flex-grow: 1;
}

.info-alert .info-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 15px;
}

.info-alert .info-message {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.info-alert .info-close {
    font-size: 0.7rem;
    margin-left: auto;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.info-alert .info-close:hover {
    opacity: 1;
}

