.cotizacion-monedas {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  background: #fff;
  margin: 20px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cotizacion-monedas th, 
.cotizacion-monedas td {
  padding: 12px 15px;
  text-align: left;
  border: none;
}

.cotizacion-monedas th {
  font-weight: bold;
  background-color: #f8f9fa;
  border-bottom: 2px solid #e9ecef;
}

.cotizacion-monedas tr:hover {
  background-color: #f5f5f5;
}

/* Alineación derecha para valores numéricos */
.cotizacion-monedas td:nth-child(2),
.cotizacion-monedas td:nth-child(3) {
  text-align: right;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  color: #28a745;
}

/* Versión responsive */
@media screen and (max-width: 600px) {
  .cotizacion-monedas {
    display: block;
    overflow-x: auto;
  }
  
  .cotizacion-monedas th, 
  .cotizacion-monedas td {
    padding: 8px 10px;
    font-size: 11px;
  }
}