/**
 * VoxAiAu Modal Styles (Base)
 */

.voxai-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.voxai-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.voxai-modal-container {
    background: #fff;
    width: 90%;
    max-width: 450px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: 1px solid #ccd0d4;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.voxai-modal-overlay.active .voxai-modal-container {
    transform: translateY(0);
}

.voxai-modal-header {
    padding: 12px 20px;
    background: #f6f7f7;
    border-bottom: 1px solid #ccd0d4;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.voxai-modal-header-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.voxai-modal-header h3 {
    margin: 0;
    font-size: 14px;
    color: #1d2327;
}

.voxai-modal-icon {
    font-size: 20px !important;
    width: 20px;
    height: 20px;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.voxai-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #646970;
    padding: 5px;
    line-height: 1;
}

.voxai-modal-close:hover {
    color: #d63638;
}

.voxai-modal-content {
    padding: 25px 20px;
    font-size: 13px;
    line-height: 1.5;
    color: #3c434a;
    text-align: left;
}

.voxai-modal-footer {
    padding: 15px 20px;
    background: #f6f7f7;
    border-top: 1px solid #ccd0d4;
    text-align: right;
}

/* Icon Colors */
.voxai-modal-icon.success { color: #00a32a; }
.voxai-modal-icon.error { color: #d63638; }
.voxai-modal-icon.warning { color: #dba617; }
.voxai-modal-icon.info { color: #2271b1; }
