
/* Modal base */
#size-guides-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

#size-guides-modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  position: relative;
  font-family: 'Open Sans', sans-serif;
}

#size-guides-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  border: none;
  background: transparent;
}

#show-guide-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #2c2c2c;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  font-size: 14px;
}

#show-guide-selector svg {
  width: 18px;
  height: 18px;
  fill: white;
}

/* Tabla guía de talles */
#size-guide-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 14px;
}

#size-guide-content th,
#size-guide-content td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

#size-guide-content th {
  background-color: #f4f4f4;
  font-weight: 600;
}

#size-guide-content tr:nth-child(even) {
  background-color: #f9f9f9;
}
