/* Custom Alert Styles */
.custom-alert {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    padding: 16px 20px;
    margin-bottom: 20px;
    background-color: #fff;
    /* Fallback */
    border-left: 5px solid transparent;
}

.custom-alert .alert-icon {
    font-size: 1.25rem;
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.custom-alert .alert-content {
    flex-grow: 1;
    font-weight: 500;
    font-size: 0.95rem;
    color: #334155;
}

.custom-alert .btn-close {
    padding: 1.25rem;
}

/* Success Alert */
.alert-success {
    background-color: #f0fdf4;
    border-left-color: #22c55e;
}

.alert-success .alert-icon {
    color: #22c55e;
}

.alert-success .alert-content {
    color: #15803d;
}

/* Danger/Error Alert */
.alert-danger {
    background-color: #fef2f2;
    border-left-color: #ef4444;
}

.alert-danger .alert-icon {
    color: #ef4444;
}

.alert-danger .alert-content {
    color: #b91c1c;
}

/* Warning Alert */
.alert-warning {
    background-color: #fffbeb;
    border-left-color: #f59e0b;
}

.alert-warning .alert-icon {
    color: #f59e0b;
}

.alert-warning .alert-content {
    color: #b45309;
}

/* Info Alert */
.alert-info {
    background-color: #eff6ff;
    border-left-color: #3b82f6;
}

.alert-info .alert-icon {
    color: #3b82f6;
}

.alert-info .alert-content {
    color: #1d4ed8;
}