/* NICHOLAS 15/12/2025 */
/* Layer Search & Expand/Collapse Styles */

.search-hidden {
    display: none !important;
}

.layer-search-container {
    padding: 10px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 99;
}

.layer-toggle-container {
    padding: 10px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.layer-toggle-text-wrapper {
    width: 100%;
}

.layer-toggle-text {
    margin: 0;
    padding-left: 5px;
    cursor: pointer;
    color: #597a96;
    font-weight: bold;
    font-size: 13px;
}

/* NICHOLAS 16/12/2025 */
/* Criando botão de Voltar ao Topo*/
#lstCardLayers {
    padding-bottom: 120px !important;
    min-height: 500px;
    /* Ensure there is scrollable content */
}

/* Back to Top Button for Layers */
.layer-back-to-top {
    position: absolute;
    bottom: 80px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #597a96;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1001;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.layer-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.layer-back-to-top:hover {
    background-color: #466075;
}

.layer-back-to-top i {
    font-size: 18px;
    line-height: 40px;
}

/* Adjust for mobile/responsive if sidepanel width changes */