* {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1rem !important;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto Condensed", sans-serif;
  background: linear-gradient(0deg, #2c0227 0%, #781950 100%);
  color: #fff !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label,
.btn,
a {
  font-weight: 300;
  text-decoration: none !important;
  color: #fff !important;
}

header {
  background-size: 100%;
  background-position: center;
  text-align: center;
}

.footer-bloc {
  background-color: #000000;
  color: #ffffff !important;
}

#menu {
  background-color: #333;
  color: #fff;
  padding: 10px;
  text-align: center;
}

#imagentitulo {
  background-color: rgb(3 19 41);
  text-align: center;
  padding: 20px;
}

#imagentitulo img {
  max-width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#cuerpo {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: #fff;
}

/* Grid layout for participants */
.participants-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 100%;
  margin: 0 auto;
}

/* Limit participants to a maximum of 6 per row */
@media (min-width: 768px) {
  .participants-container {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Participant block with transparent background */
.participant {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
  background-color: transparent; /* Transparent background */
  border-radius: 10px;
}

/* Uniform size for images */
.participant img {
  max-width: 100%;
  max-height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
  width: 100px; /* Fixed width for uniformity */
  height: 100px; /* Fixed height for uniformity */
}

/* Consistent text styles */
.participant p {
  font-size: 1rem;
  font-weight: bold;
  margin: 5px 0;
  color: #fff;
}

.participant h3 {
  font-size: 1.2rem;
  color: #fff;
}

/* Responsive text */
@media (max-width: 767px) {
  .participant p,
  .participant h3 {
    font-size: 0.9rem; /* Adjust text size for smaller screens */
  }
}

/* Responsive Plotly chart */
#myPlot {
  width: 100%;
  height: 400px;
  max-width: 1200px;
  margin: 0 auto;
}

.boton-logout input {
  background-color: #ff6347;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.boton-logout input:hover {
  background-color: #ff4500;
}
