
    .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: white;
        border-radius: 16px;
        padding: 30px;
        width: 85%;
        max-width: 320px;
        text-align: center;
        transform: scale(0.8);
        transition: transform 0.3s ease;
    }

    .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, #4CAF50 0%, #8BC34A 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, #2196F3 0%, #03A9F4 100%);
    }

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

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

    .alert-modal-text {
        font-size: 14px;
        color: #666;
        margin: 0 0 20px;
        line-height: 1.5;
    }

    .alert-modal-actions {
        display: flex;
        gap: 12px;
        justify-content: center;
    }

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

    .alert-modal-btn-single {
        background: linear-gradient(135deg, #ff6b9d 0%, #ff8fb3 100%);
        color: white;
        box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
        max-width: 150px;
    }

    .alert-modal-btn-single:hover {
        box-shadow: 0 6px 16px rgba(255, 107, 157, 0.4);
        transform: translateY(-1px);
    }

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

    .alert-modal-btn-cancel {
        background: #f5f5f5;
        color: #666;
        border: 1px solid #e0e0e0;
    }

    .alert-modal-btn-cancel:hover {
        background: #e8e8e8;
    }

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

    .alert-modal-btn-confirm {
        background: linear-gradient(135deg, #ff6b9d 0%, #ff8fb3 100%);
        color: white;
        box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
    }

    .alert-modal-btn-confirm:hover {
        box-shadow: 0 6px 16px rgba(255, 107, 157, 0.4);
        transform: translateY(-1px);
    }

    .alert-modal-btn-confirm:active {
        transform: translateY(0) scale(0.96);
        box-shadow: 0 2px 8px rgba(255, 107, 157, 0.2);
    }