/* ...existing code... */

.user-id-field {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px;
  background-color: #f9f9f9;
  border-radius: 4px;
}

.profile-field-label {
  font-weight: bold;
  margin-right: 10px;
  min-width: 140px;
}

.profile-field-value {
  display: flex;
  align-items: center;
  font-family: monospace;
  color: #555;
}

.user-id {
  font-family: monospace;
  color: #555;
  display: inline-flex;
  align-items: center;
}

.copy-button {
  margin-left: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 3px;
}

.copy-button:hover {
  background-color: #eee;
}

/* Стилі для сторінки ресурсів */
#territorySearch {
  margin-bottom: 15px;
  border-radius: 4px;
  padding: 8px 12px;
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 123, 255, 0.05);
}

.open-resource {
  transition: all 0.2s ease;
}

.open-resource:hover {
  transform: translateY(-2px);
}

.fields-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.fields-table th,
.fields-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.fields-table th {
  background-color: #f8fafc;
  font-weight: 600;
}

.fields-table tr:hover {
  background-color: #f1f5f9;
}

.view-field-btn,
.delete-field-btn {
  padding: 0.25rem 0.5rem;
  margin-right: 0.5rem;
  border-radius: 0.25rem;
  cursor: pointer;
}

.view-field-btn {
  background-color: #3b82f6;
  color: white;
  border: none;
}

.delete-field-btn {
  background-color: #ef4444;
  color: white;
  border: none;
}

/* ...existing code... */
