/**
 * MindMap Pro - Frontend Styles
 * Styles for shortcode display on public pages
 */

.mindmap-pro-container {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mindmap-pro-header {
    background: #f8f9fa;
    padding: 15px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mindmap-pro-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.mindmap-pro-controls {
    display: flex;
    gap: 10px;
}

.mindmap-control-btn {
    background: white;
    border: 1px solid #d1d5db;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.mindmap-control-btn:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.mindmap-pro-canvas {
    width: 100%;
    position: relative;
    background: #ffffff;
}

.mindmap-pro-canvas svg {
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .mindmap-pro-header {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .mindmap-pro-controls {
        justify-content: center;
    }
}
