/* SIMPLE ALERT STYLES */
.alert {
    padding: 12px 18px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
    border-left: 4px solid #198754;
}

.alert-info {
    background-color: #cff4fc;
    color: #055160;
    border-left: 4px solid #0dcaf0;
}

.btn {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-outline-secondary {
    background-color: transparent;
    color: #6c757d;
    border: 1px solid #6c757d;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    color: white;
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 8px;
}