/**
 * ZOOGABOOG! Global Modal Styles
 * Clean, simple fade animations (not annoying!)
 */

.zoogaboog-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.zoogaboog-modal-overlay.show {
    opacity: 1;
}

.zoogaboog-modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

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

.zoogaboog-modal-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1;
}

.zoogaboog-modal-icon i {
    display: inline-block;
}

.zoogaboog-modal-title {
    color: #2d3748;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.zoogaboog-modal-message {
    color: #64748b;
    font-size: 1.05rem;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

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

.zoogaboog-modal-btn {
    padding: 12px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: inherit;
}

.btn-modal-primary {
    background: #01aade;
    color: white;
}

.btn-modal-primary:hover {
    background: #0085ae;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 170, 222, 0.4);
}

.btn-modal-secondary {
    background: #f1f5f9;
    color: #64748b;
}

.btn-modal-secondary:hover {
    background: #e2e8f0;
    color: #475569;
    transform: translateY(-2px);
}

.btn-modal-danger {
    background: #ef4444;
    color: white;
}

.btn-modal-danger:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.btn-modal-success {
    background: #10b981;
    color: white;
}

.btn-modal-success:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Responsive */
@media (max-width: 600px) {
    .zoogaboog-modal-content {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .zoogaboog-modal-icon {
        font-size: 3rem;
    }
    
    .zoogaboog-modal-title {
        font-size: 1.5rem;
    }
    
    .zoogaboog-modal-message {
        font-size: 0.95rem;
    }
    
    .zoogaboog-modal-actions {
        flex-direction: column;
    }
    
    .zoogaboog-modal-btn {
        width: 100%;
    }
}




