body {
  background-color: #f5f5f5; /* helles Grau als sanfter Neutralton */
  color: #333;              /* dunkler Text für gute Lesbarkeit */
}

.form-label-custom{
  font-size: large; 
  /* Adjust font size for better visibility */
  font-weight: bold;
}

.tmdb-info {
  font-size: 0.85rem;
  color: #666;
}

#loadingSpinner {
  display: none;
  text-align: center;
  margin-top: 2rem;
}

.no-results {
  text-align: center;
  margin-top: 20px;
  color: #666;
}

.no-results i {
  display: block;
  margin-bottom: 10px;
  color: #007bff;
}

.no-results p {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
}

#adminTable th, #adminTable td {
  max-width: 150px; /* Limit column width */
  white-space: nowrap; /* Prevent text wrapping */
  overflow: hidden; /* Hide overflow text */
  text-overflow: ellipsis; /* Add ellipsis for overflow text */
}