/* Cluster marker list */
#cluster-marker-list {
    max-height: 400px;
    overflow-y: auto;
}
 /* List item for selecting a particular marker */
.cluster-marker-item {
    padding: 12px;
    border: 1px solid #253149;
    border-radius: 6px;
    margin-bottom: 8px;
    background: #1a2332;
    cursor: pointer;
    transition: background-color 0.2s;
}
.cluster-marker-item:hover {
    background: #253149;
}
.cluster-marker-item:last-child {
    margin-bottom: 0;
}
.marker-text-container {
    display: flex;
    justify-content: space-between;
}
.marker-coordinates {
    color: #ffffff;
    margin-bottom: 4px;
    white-space: nowrap;
}
.marker-plot-name {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}
.marker-gradient-stat, .marker-wavelength {
    font-size: 12px;
    color: #9aa3b2;
}
