/* Custom Alert Styles */
.custom-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.custom-alert.hidden {
    opacity: 0;
    pointer-events: none;
}

.custom-alert-content {
    background-color: #1C1C1E;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-alert.hidden .custom-alert-content {
    transform: scale(0.8);
}

.custom-alert h3 {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.custom-alert p {
    font-size: 16px;
    color: #C5CAD3;
    margin-bottom: 24px;
    line-height: 1.5;
}

.custom-alert button {
    background-color: var(--accent-color);
    color: #000;
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.custom-alert button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}