/**
* Estilos Humboldspiele 2025
*/

	
.tablaHS {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
  overflow: auto;
}

.tablaHS td, #tablaHS th {
  border: 1px solid #ddd;
  padding: 8px;
}

.tablaHS tr:nth-child(even){background-color: #f2f2f2;}

.tablaHS tr:hover {background-color: #ddd;}

.tablaHS th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  background-color: #94c11e;
  color: white;
}

.spanHS {
  font-size: 1.2em; /* Adjust the font size */
  font-weight: bold; /* Make the text bold */
  color: #333; /* Dark text color for contrast */
  background-color: #f9f9f9; /* Light background color */
  padding: 10px; /* Add padding around the text */
  border-radius: 5px; /* Rounded corners for a softer look */
  text-align: center; /* Center-align the text */
  margin: 20px auto; /* Add spacing and center the element */
  width: fit-content; /* Adjust width to fit the text */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Optional: Add hover effect for interactivity */
.spanHS:hover {
  background-color: #eaeaea; /* Slightly darker background on hover */
  color: #000; /* Darker text color on hover */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}