/* Custom Alert Overlay */
.custom-alert-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

/* Alert Box */
.custom-alert-box {
    background: #fff;
    padding: 30px 25px;
    border-radius: 18px;
    text-align: center;
    max-width: 320px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    animation: popIn 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

/* Title */
.custom-alert-box h4 {
    color: #EC994B;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Message */
.custom-alert-box p {
    color: #444;
    font-size: 15px;
    margin-bottom: 20px;
}

/* Button */
.custom-alert-box button {
    padding: 8px 25px;
    border: none;
    border-radius: 20px;
    background: #EC994B;
    box-shadow: 0 6px 12px rgba(236, 153, 75, 0.4);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
}

.custom-alert-box button:hover {
    background: #e88a2f;
    transform: scale(1.08);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}
