body {
    font-family: sans-serif;
}
html,
body,
#sigma-container {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
#controls {
    position: absolute;
    left: 1em;
    top: 1em;
    text-align: left;
    pointer-events: none;
}

#controls button,
#controls input,
#controls .btn,
#controls .input,
#controls .input * {
    pointer-events: auto;
}

.input {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

#bottom-buttons {
    position: absolute;
    left: 1em;
    bottom: 1em;
}

.btn {
    background: #f5f7fa;
    /*color: #2355d8;*/
    border: 1px solid #dbeafe;
    border-radius: 6px;
    padding: 6px 10px;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(35, 85, 216, 0.08);
    transition:
        background 0.2s,
        color 0.2s;
}
.btn:hover {
    background: #e0e7ff;
    color: #1e3a8a;
}

#search-input[type="search"] {
    padding: 10px 14px;
    border: 1px solid #dbeafe;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: #f5f7fa;
    box-shadow: 0 1px 4px rgba(35, 85, 216, 0.08);
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    outline: none;
}
#search-input[type="search"]:focus {
    border-color: #4f8cff;
    box-shadow: 0 2px 8px rgba(79, 140, 255, 0.15);
    background: #fff;
}

.section-label {
    display: inline-block;
    font-size: 0.95em;
    background: #f5f7fa;
    padding: 3px 14px;
    border-radius: 999px;
    font-weight: 500;
    margin-bottom: 0.5em;
}
