#mainPanel {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--secondary-bg);
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
    padding: 10px;
}

#dividerPanel {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 10px;
    min-height: 0;
}

/* Plot panel */
#plotPanel {
    height: 50%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


/* Table panel */
#tablePanel {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

/* Control bar */
#controls {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 6px;
}

input {
    padding: 0 20px;
    font-size: 20px;
}

/* Radio group */
label {
    all:unset;
    user-select: none;
    cursor: pointer;
    padding: 4px 10px;
    font-size: 13px;
    border-radius: 4px;
    background-color: var(--primary-color);
    color: var(--text-color-light);
    cursor: pointer;
    transition: background-color 0.3s;
    align-items: center;
    justify-content: center;
}
