select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.selected-fields-table {
  width: 100%;
  margin-top: 10px;
  border-collapse: collapse;
}

.selected-fields-table th, .selected-fields-table td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

.selected-fields-table tr:hover {
  background-color: #f5f5f5;
  cursor: pointer;
}

.selected-fields-table tr.dragging {
  opacity: 0.5;
  background-color: #e3f2fd;
}

.selected-fields-table tr.drag-over {
  border-top: 3px solid #2196f3;
}

.drag-handle {
  cursor: grab;
  color: #666;
  padding: 2px 4px;
  margin-right: 4px;
  user-select: none;
}

.drag-handle:hover {
  color: #333;
  background-color: #f0f0f0;
  border-radius: 2px;
}

.drag-handle:active {
  cursor: grabbing;
}

.login-form {
  max-width: 500px;
  margin: 0 auto;
}

.status-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
}

.status-online {
  background-color: #10b981;
}

.status-offline {
  background-color: #ef4444;
}

/* Future-proof high contrast support */
@media (forced-colors: active) {
  .selected-fields-table th, 
  .selected-fields-table td {
    border: 1px solid CanvasText;
  }
  .status-indicator {
    border: 1px solid CanvasText;
  }
}