.custom-leaflet-map-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 800px;
    max-width: none !important;
    margin: 0 !important;
}

#custom-leaflet-map {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #f7f7e4;
    outline: 0;
}

#custom-layers-control {
    position: absolute;
    top: 50%;
    left: 0;
    background: #e3e3d0;
    border: 1px solid #e3e3d0;
    border-radius: 0 4px 4px 0;
    z-index: 1000;
    transition: width 0.3s ease-in-out;
    width: 40px;
    overflow: hidden;
    transform: translateY(-50%);
}

#custom-layers-control.expanded {
    width: 450px;
}

.control-toggle {
    width: 40px;
    height: 678px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-icon {
    width: 24px;
    height: auto;
}

.vertical-text {
    writing-mode: vertical-lr;
    text-orientation: mixed;
    transform: rotate(180deg);
    text-transform: uppercase;
    font-weight: bold;
    color: #333;
}

.layers-list {
    position: absolute;
    background-color: #f7f7e4;
    top: 0;
    left: 40px;
    width: 390px;
    padding: 10px;
    overflow-y: auto;
}

.layer-item {
    display: flex;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px solid #eee;
}

.layer-label {
    display: flex;
    width: 100%;
    align-items: center;
    height: 42px;
}

.layer-label img {
    height: 42px;
    width: auto;
    margin-right: 10px;
}

.layer-state {
    width: 42px;
    height: 42px;
}

.layer-state img {
    width: 100%;
    height: 100%;
}

.layer-item.selectable {
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.layer-item.selectable:hover {
    background-color: rgba(227, 227, 208, 0.3);
}

.layer-item.selectable.active {
    background-color: #e3e3d0;
} 