article.grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
}

.cluster-list {
    padding: 1rem;
    border-right: 1px solid var(--border);
    height: 90vh;
    overflow: auto;
}

.cluster-item {
    display: flex;
    font-size: 0.6rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1rem;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}


.cluster-detail-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background-color: white;
  padding: 2rem;
  overflow-y: auto;
}

.circle {
    height: 48px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

.icon-button {
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
}

.eye-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
}

.dynamikscore {
    font-family: monospace;
    white-space: nowrap;
    width: 25%;
}

.map-container {
    height: 90vh;
    border: 1px solid var(--border);
    border-radius: var(--border-radius); 
}

/* filter bar */
.filter-bar {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 8px;
  }
  
  .filter-form {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 100%;
    margin: 0 auto;
    font-size: 0.8rem;
  }

  .overlapping-label {
    position: absolute;
    top: -8px; 
    left: 10px;
    font-size: 0.6rem;
    font-weight: 400;
    background: white;
    padding: 0 4px;
  }
  
  .filter-group {
    width: 15%;
    position: relative;
  }

  .filter-group-input {
    width: 35%;
    position: relative;
  }

  .filter-group-input input {
    padding: 0.4rem !important;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    height: fit-content !important;
  }

  .filter-group select {
    padding: 0.4rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  .filter-button {
    padding: 0.2rem 0.4rem !important;
    background-color: #1976d3;
    font-size: 0.6rem !important;
    font-weight: 700 !important;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    max-width: fit-content;
  }
  
  .filter-button:hover {
    background-color: #1463b3;
  }

  .operation-button {
    padding: 0.2rem 0.4rem;
    font-size: 0.5rem !important;
    width: 220px;
  }
  
  .operation-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

.document-details {
  padding: 0 1rem;
}

.collection-section {
  margin-top: 1rem;
  border-top: 1px solid #e0e0e0;
  padding-top: 1rem;
  gap: 1rem;
}

.collection-list {
  padding-left: 2rem;
}

.span-full {
  grid-column: 1 / -1;
}

.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.loading-message {
  font-weight: bold;
  margin-bottom: 0px !important;
}

.loading-error {
  color: #721c24;
  font-weight: bold;
  background-color: #f8d7da;
  padding: 1rem;
  border-radius: 0.25rem;
}