#custom-current-selections-panel {
    /* Garante que fique no topo de todos os elementos */
    z-index: 1000; 
    /* Define a posição */
    position: fixed; 
    top: 10px;
    right: 10px;
    /* Estilos de Aparência */
    border: 1px solid #ccc;
    background-color: white; 
    padding: 10px;
    /* ... outros estilos ... */
}

.custom-selection-field {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #eee;
}

.custom-selection-field h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #555;
    font-weight: bold;
}

.custom-selection-field ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.custom-selection-field li {
    font-size: 13px;
    color: #333;
}