/* Button to open the chart */
/* .glove-size-table-btn {
  display: inline-block;
  margin: 1.5em auto;
  padding: 0.75em 1.5em;
  background: #007cba;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
}
.glove-size-table-btn:hover {
  background: #005a8c;
} */

/* Modal overlay */
#glove-size-table-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
}

/* Modal content box */
.glove-size-table-content {
  background: #fff;
  border-radius: 6px;
  max-width: 600px;
  width: 90%;
  margin: 5% auto;
  padding: 1.5em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  position: relative;
}

/* Header */
.glove-size-table-content h2 {
  margin-top: 0;
  font-size: 1.6em;
  text-align: center;
  color: #333;
}

/* Intro paragraph */
.glove-size-table-content .intro {
  font-size: 1em;
  line-height: 1.4;
  margin: 1em 0 1.5em;
  text-align: center;
  color: #555;
}

/* Table styling */
.glove-size-table-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
}
.glove-size-table-content th,
.glove-size-table-content td {
  border: 1px solid #ddd;
  padding: 0.75em;
  text-align: center;
}
.glove-size-table-content th {
  background: #f5f5f5;
  font-weight: 600;
  color: #333;
}

/* Close button */
.glove-size-table-close {
  display: block;
  margin: 0 auto;
  padding: 0.6em 1.2em;
  background: #007cba;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.glove-size-table-close:hover {
  background: #005a8c;
}
