#modal-alert {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-alert-content {
    position: relative;
    width: 400px;
    background: var(--modal-alert-background-color);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.modal-alert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.modal-alert-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.modal-alert-message {
    margin: 0 0 20px 0;
    font-size: 14px;
    color: white;
}

.modal-alert-buttons button {
    margin: 0 10px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    color: var(--text-button-color);
}

.modal-alert-buttons button.blue {
    background-color: var(--color-blue);
}

.modal-alert-buttons button.green {
    background-color: var(--color-green);
}

.modal-alert-buttons button.red {
    background-color: var(--color-red);
}

/* Mobile styles */
@media (max-width: 1024px) {
    .modal-alert-content {
        width: 80%;
    }
}
