#mermaidChart {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#mermaidInput {
    border: 1px solid #ccc;
}

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}

#mermaid-diagram {
    width: 100%;
    height: 100%;
}

.bg-indigo-50 {
    transition: background-color 0.3s ease;
}

.bg-indigo-50:hover {
    background-color: #e0e7ff;
}

#resize-handle {
    cursor: col-resize;
    width: 4px;
    background-color: #e5e7eb;
    transition: background-color 0.3s ease;
}

#resize-handle:hover {
    background-color: #d1d5db;
}

#resizable-container {
    display: flex;
    height: 100%;
}

#code-section, #diagram-section {
    overflow: hidden;
}

.text-indigo-600 {
    transition: color 0.3s ease;
}

.text-indigo-600:hover {
    color: #4f46e5;
}

/* New styles for the header */
header {
    transition: all 0.3s ease;
}

header:hover {
    background-color: #f3f4f6;
}

header select {
    transition: all 0.3s ease;
}

header select:hover {
    border-color: #6366f1;
}
