/* Switch Menu Plugin Styles */

.switch-menu-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.switch-menu-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
    animation: switchMenuSlideIn 0.3s ease-out;
    overflow: hidden;
}

@keyframes switchMenuSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.switch-menu-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.switch-menu-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.switch-menu-close {
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.2s;
}

.switch-menu-close:hover {
    opacity: 0.7;
}

.switch-menu-body {
    padding: 25px;
    line-height: 1.6;
}

.switch-menu-body p {
    margin: 0 0 15px 0;
    color: #333;
}

.switch-menu-body strong {
    color: #667eea;
    font-weight: 600;
}

.switch-menu-body code {
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 12px;
    color: #e83e8c;
    display: block;
    margin-top: 10px;
    word-break: break-all;
}

.switch-menu-footer {
    padding: 20px 25px 25px;
    text-align: right;
}

.switch-menu-ok {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.switch-menu-ok:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.switch-menu-ok:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 480px) {
    .switch-menu-content {
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .switch-menu-header,
    .switch-menu-body,
    .switch-menu-footer {
        padding: 15px;
    }
    
    .switch-menu-header h3 {
        font-size: 16px;
    }
} 