/* General styles */
.pvpc-dia {
  background: transparent;
  border: none;
  padding: 1em;
  font-family: Arial, sans-serif;
  color: #333;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.pvpc-dia h4, .pvpc-dia h5, .pvpc-dia h6 {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  color: #228B22;
}

/* Desktop table styles */
.solo-escritorio .pvpc-tabla table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: transparent;
}

.solo-escritorio .pvpc-tabla th,
.solo-escritorio .pvpc-tabla td {
  padding: 0.5em;
  border-bottom: 1px solid #ccc;
}

.solo-escritorio .pvpc-tabla th {
  background-color: #f0f0f0;
  color: #228B22;
}

.solo-escritorio .pvpc-tabla tr:hover {
  background-color: #f9f9f9;
}

/* Mobile list styles */
.solo-movil {
  display: none;
}

.lista-movil {
  margin-bottom: 2em;
}

.lista-movil h5, .lista-movil h6 {
  color: #3e423e;
  margin-bottom: 0.5em;
}

.item-movil {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 0.5em;
  padding: 0.5em;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.item-movil .label {
  font-weight: bold;
  color: #3e423e;
}

/* Responsive rules */
@media screen and (max-width: 768px) {
  .solo-escritorio {
    display: none !important;
  }
  .solo-movil {
    display: block !important;
  }
}

