main {
    max-height: 100vh;
    overflow-y: scroll;
  }
  

  .overview-header {
    margin: 0px;
    display: flex;
    width: 80vw;
    justify-content: space-between;
    align-items: center;
}

.overview-header-title {
    padding: 25px 25px 10px 25px;
}
  
  .card {
    margin-bottom: 25px;
  }
  
  .send-messages-item-title {
    display: flex;
    align-items: center;
    cursor: pointer;
  }

  .card-custom {
    border-radius: 4px;
    padding: 25px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin: 0px 25px 25px 25px;
}
  
  .send-message-item h6 {
    margin-bottom: 3px;
    margin-right: 2px;
    font-size: 1rem;
    text-decoration: underline;
    color: rgb(0, 109, 250);
  }
  
  .send-message span {
    text-decoration: none !important;
    font-size: 1rem;
    color: rgb(0, 109, 250);
  }
  
  .send-message p {
    padding-top: 5px;
    font-size: 0.95rem;
  }
  
  td {
    border-bottom: 0.1px solid #ccc;
    box-shadow: none !important;
  }
  
  tr {
    height: 45px;
  }
  
  .modal-header {
    font-size: 1rem;
    color: black;
  }
  
  .modal-header button {
    font-size: 13px;
  }
  
  .messagePreview {
    display: flex;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 10px;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .messageIcon {
    width: 50px;
  }
  
  .messagePreviewContent {
    display: flex;
    flex-direction: column;
    justify-content: end;
  }
  
  .modal-footer button {
    padding: 7px 15px;
  }
  
  .modal-footer button span {
    color: white;
    font-size: 1rem;
    margin-right: 5px;
  }
  
  .form-check label {
    margin-top: 2px;
  }
  
  .hidden {
    display: none;
  }
  
  #selectAllPermitsCheck {
    position: relative;
    margin: 20px 0px 10px 0px;
  }
  
  #selectAllPermitsCheckLabel {
    position: relative;
    margin: 17px 5px 12px 5px;
  }
  
  td {
    align-content: center;
  }
  
  .link {
    text-decoration: underline;
    color: rgb(0, 109, 250) !important;
    cursor: pointer;
  }
  
  .modal-body h6 {
    color: black;
    font-weight: 500;
  }
  
  
  .section-body-item {
    margin: 5px 0px;
  }
  
  .section-body-value {
    color: black;
    font-weight: 500;
  }
  
  .section {
    margin-bottom: 25px;
  }

  
  #scheduledMessagesTableContainer {
    max-height: 350px;
    overflow-y: scroll;
  }
  
  .modal-content {
    min-width: 40vw;
  }
  
  .check-icon {
    display: flex;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background-color: rgb(0, 190, 0);
    align-items: center;
    justify-content: center;
    margin-right: 5px;
  }
  
  .check-icon span {
    color: white;
  }
  
  .delivered-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #scheduledMessageDetailsModal .modal-body,
  #messageDetailsModal .modal-body {
    max-height: 500px;
    overflow-y: scroll;
  }
  
  .form-label {
    color: black;
    font-size: 0.85rem;
  }
  
  .form-text {
    font-size: 0.75rem;
  }

  .section-body {
    display: grid;
    grid-template-columns: auto 1fr; /* Creates two columns, one auto-sized for the labels and the other taking the remaining space */
    gap: 10px; /* Adds some space between columns */
}

.section-body-keys {
    text-align: right; /* Aligns the labels to the right */
    padding-right: 10px; /* Adds some space between labels and values */
    white-space: nowrap; /* Prevents labels from wrapping */
}

.section-body-values {
    text-align: left; /* Aligns the content to the left */
    overflow-wrap: break-word; /* Breaks long words */
    word-wrap: break-word; /* Ensures compatibility with older browsers */
    word-break: break-word; /* Forces word breaking */
}

.section-body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.section-body-keys {
  text-align: right;
  padding-right: 10px;
  white-space: nowrap;
  align-self: start;
}

.section-body-values {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.section-body-item {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  display: block;
}

.large-content {
  grid-column: 1 / span 2;
  max-height: 150px;
  overflow-y: auto;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 15px;
}

.compact-content {
  display: inline-block; /* Make sure it takes minimal space */
  padding: 0;
  margin-bottom: 0; /* Removes any bottom margin */
}

.client-value {
  margin-top: -1px; /* Adjust this value until the alignment looks correct */
}