/* HubSpot Meeting Modal Styles */

.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.7);
    align-items: center;
    justify-content: center;
  }
  
  .hubspot-modal-content {
    margin: auto;
    width: 90%;
    max-width: 1000px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 90vh;
    max-height: 800px;
  }
   
  .close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .close:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  #hubspotContainer {
    width: 100%;
    height: 100%;
  }
  
  .meetings-iframe-container {
    height: 100% !important;
  }
  
  /* Button styling */
  .hubspot-meeting-trigger {
    cursor: pointer;
  } 