
.alert-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.alert-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.alert-modal-container {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    transform: scale(0.7);
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.alert-modal-overlay.show .alert-modal-container {
    transform: scale(1);
}

.alert-modal-container .alert-modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.alert-modal-container .alert-modal-content {
    color: #666;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.alert-modal-container .alert-modal-button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
}

.alert-modal-container .alert-modal-button {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}

.alert-modal-container .alert-modal-button-primary {
    background: linear-gradient(135deg, #020ee2, #5d66ff);
    color: white;
}

.alert-modal-container .alert-modal-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(2, 14, 226, 0.2);
}

.alert-modal-container .alert-modal-button-secondary {
    background: transparent;
    color: #666;
    border: 2px solid #e0e0e0;
}

.alert-modal-container .alert-modal-button-secondary:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

@media (max-width: 768px) {

    .alert-modal-container {
        padding: 2rem 1.5rem;
        max-width: 340px;
    }

    .alert-modal-container .alert-modal-button-group {
        flex-direction: column;
    }

    .alert-modal-container .alert-modal-button {
        width: 100%;
        justify-content: center;
    }

}
