/**
 * WIA AI Modal Styles
 * TODO: Full implementation from wia-navigations repo
 */

.wia-ai-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10002;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.wia-ai-modal-overlay.open { display: flex; }

.wia-ai-modal {
    background: #ffffff;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.wia-ai-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px 24px;
    color: #fff;
    position: relative;
}
.wia-ai-modal-header h2 { margin: 0; font-size: 18px; }
.wia-ai-modal-close {
    position: absolute; top: 12px; right: 12px;
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.2);
    border: none; border-radius: 50%;
    color: #fff; font-size: 18px;
    cursor: pointer;
}

.wia-ai-modal-body {
    padding: 24px;
    text-align: center;
    color: #333;
}
.wia-ai-modal-body p { margin: 16px 0; }
