    .alert-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .alert-modal-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    .alert-modal-content {
        background: linear-gradient(135deg, #3bcc5e 50%, #82e8ac 100%);
        border: 1px solid rgba(0, 217, 163, 0.3);
        border-radius: 12px;
        padding: 30px;
        width: 85%;
        max-width: 320px;
        text-align: center;
        transform: scale(0.8);
        transition: transform 0.3s ease;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }

    .alert-modal-overlay.show .alert-modal-content {
        transform: scale(1);
    }

    .alert-modal-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .alert-modal-icon.success {
        background: linear-gradient(135deg, #00d9a3 0%, #00c090 100%);
    }

    .alert-modal-icon.error {
        background: linear-gradient(135deg, #f44336 0%, #ff5722 100%);
    }

    .alert-modal-icon.warning {
        background: linear-gradient(135deg, #ff9800 0%, #ffc107 100%);
    }

    .alert-modal-icon.info {
        background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    }

    .alert-modal-icon svg {
        width: 32px;
        height: 32px;
        fill: white;
    }

    .alert-modal-title {
        font-size: 18px;
        font-weight: 600;
        color: #ffffff;
        margin: 0 0 10px;
    }

    .alert-modal-text {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        margin: 0 0 20px;
        line-height: 1.5;
    }

    /* Replaced gap with margin for better browser compatibility */
    .alert-modal-actions {
        display: flex;
        justify-content: center;
    }

    .alert-modal-btn {
        padding: 12px 24px;
        border: none;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s ease;
        flex: 1;
        max-width: 120px;
        margin-right: 12px;
    }

    .alert-modal-btn:last-child {
        margin-right: 0;
    }

    .alert-modal-btn-single {
        background: rgba(255, 255, 255, 0.95);
        color: #00b88a;
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
        max-width: 150px;
    }

    .alert-modal-btn-single:active {
        transform: scale(0.96);
    }

    .alert-modal-btn-cancel {
        background: rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .alert-modal-btn-cancel:active {
        transform: scale(0.96);
    }

    .alert-modal-btn-confirm {
        background: rgba(255, 255, 255, 0.95);
        color: #00b88a;
    }

    .alert-modal-btn-confirm:active {
        transform: scale(0.96);
    }