/* Стили для разделителя с ползунком */

.resizable-container {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 100px);
    overflow: hidden;
    position: relative;
}

.resizable-top {
    flex: 0 0 auto;
    overflow: auto;
    min-height: 100px;
    max-height: calc(100vh - 200px);
}

.resizable-bottom {
    flex: 1 1 auto;
    overflow: auto;
    min-height: 100px;
}

.resizer {
    height: 8px;
    background-color: #e0e0e0;
    cursor: row-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    transition: background-color 0.2s;
    flex-shrink: 0;
    border-top: 1px solid #bdbdbd;
    border-bottom: 1px solid #bdbdbd;
}

.resizer:hover {
    background-color: #1976d2;
}

.resizer.resizing {
    background-color: #1565c0;
}

.resizer.resizing .resizer-handle {
    background-color: #ffffff;
}

.resizer-handle {
    width: 40px;
    height: 4px;
    background-color: #9e9e9e;
    border-radius: 2px;
    pointer-events: none;
}

.resizer:hover .resizer-handle {
    background-color: #ffffff;
}