
.custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.custom-alert-overlay.active {
    opacity: 1;
}

.custom-alert-box {
    background: #1a1a1a;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #333;
    width: 90%;
    max-width: 400px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    transform: scale(0.95);
    transition: transform 0.2s ease-in-out;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.custom-alert-overlay.active .custom-alert-box {
    transform: scale(1);
}

.custom-alert-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
}

.custom-alert-message {
    font-size: 16px;
    color: #ccc;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.custom-alert-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.custom-alert-button {
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    flex-grow: 1;
}

.custom-alert-button.primary {
    background-color: #007bff;
    color: #fff;
}

.custom-alert-button.primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.custom-alert-button.secondary {
    background-color: #444;
    color: #fff;
}

.custom-alert-button.secondary:hover {
    background-color: #555;
}

