/* Modal Styles */
.sht-modal {
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sht-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 800px;
    height: 90%;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.sht-close {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.sht-close:hover,
.sht-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#sht-meeting-iframe-container {
    width: 100%;
    height: calc(100% - 20px);
}

/* Pricing Table Styles */
.sht-pricing-table {
    margin: 20px 0;
}

/* Meeting Trigger Button Styles (default) */
.sht-meeting-trigger {
    cursor: pointer;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #ff7a59; /* HubSpot Orange */
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.sht-meeting-trigger:hover {
    background-color: #e56a4c;
}





/*-----pricing--table---styles-----*/

/* === Pricing table (3 column cards) === */
table.pricing-table {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 12px 0;
  background: transparent;
  table-layout: fixed;
}

/* remove default borders */
table.pricing-table,
table.pricing-table th,
table.pricing-table td {
  border: none;
}

/* base cell style (column cards) */
table.pricing-table th,
table.pricing-table td {
  background: #F7F9FD;
  padding: 18px 18px;
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  line-height: 20px;
}

/* headers */
table.pricing-table thead th {
  color: #002BBA;
  font-weight: 700;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* left column */
table.pricing-table thead th:first-child {
  text-align: left;
  padding-left: 22px;
}

table.pricing-table tbody td:first-child {
  text-align: left;
  padding-left: 22px;
  color: #121619;
  font-weight: 500;
}

/* price columns */
table.pricing-table tbody td:not(:first-child) {
  text-align: center;
  color: #121619;
  font-weight: 700;
}

/* inner row dividers */
table.pricing-table thead th,
table.pricing-table tbody td {
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

/* remove last divider */
table.pricing-table tbody tr:last-child td {
  border-bottom: none;
}



table.pricing-table thead th:first-child,
table.pricing-table thead th:last-child,
table.pricing-table thead th:nth-child(2) {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
table.pricing-table tbody tr:last-child td:first-child,
table.pricing-table tbody tr:last-child td:last-child,
table.pricing-table tbody tr:last-child td:nth-child(2) {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}


/* responsive spacing */
@media (max-width: 680px) {
  table.pricing-table {
    border-spacing: 10px 0;
  }

  table.pricing-table th,
  table.pricing-table td {
    padding: 14px 14px;
  }
  table.pricing-table {
      border-spacing: 0px 0;
  }
  table.pricing-table tbody td:first-child {
    padding-left: 4px;
  }
  table.pricing-table thead th:first-child {
    
    padding-left: 4px;
  }
  table.pricing-table thead th {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  table.pricing-table th, table.pricing-table td {
      font-size: 12px;
      line-height: 16px;
  }
}
