/*********************************************************************************
/*
/* table - used for dive and snorkel trip schedules
/*
/********************************************************************************/

table {
  margin: 35px auto 25px auto;
  width: 100%;
  max-width: var(--max-content-width);
  border-collapse: collapse;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  position: relative;		/* required for restricting dive map image sizes */
}

table thead tr {
  background-color: var(--icon-background-blue);
  background-image: linear-gradient(to right, var(--icon-background-dark-blue) , var(--icon-background-blue) );
//  border-bottom: 1px solid #2c5282;
}

table thead tr td {
  font-size: 18px;
  color: var(--header-text);
}

table thead tr td:first-child {
  border-top-left-radius: 6px;
}

table thead tr td:last-child {
  border-top-right-radius: 6px;
}

table th,
table td {
  padding: 12px 15px;
}

table tbody tr {
//  border-bottom: 1px solid #2c5282;
}

table tbody td {
  font-size: 15px;
}

table tbody td span.details {
  display: block;
  font-size: 12px;
}

table tbody td.dive-site-map{
  width: 33%;
}

@media (min-width: 768px) {

  table thead tr td {
    font-size: 22px;
  }
}