body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background-color: rgb(226 232 240);
}

#containerDiv {
  width: 330px;
  height: 530px;
  position: absolute;
  /* margin-bottom: 20px; */
}
.containerDivMargin {
  margin-top: 20px;
}

.header-buttons {
  cursor: pointer;
}
.noHover {
  pointer-events: none;
}
.recording-paused {
  margin-left: 5px;
  color: rgba(128, 128, 128, 0.753);
  cursor: auto;
}
.recording-resumed {
  margin-left: 5px;
  color: red;
  cursor: auto;
  animation: blinker 1.5s cubic-bezier(0.5, 0, 1, 1) infinite alternate;
}
@keyframes blinker {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.header-buttons:disabled {
  cursor: not-allowed;
}
.header-buttons:hover:enabled {
  background-color: #ddd9d9;
}

#accordion {
  width: 360px;
  position: absolute;
  max-height: 200px;
  overflow-y: scroll;
  padding-left: 0px;
  visibility: hidden;
}
.ui-accordion .ui-accordion-header {
  font-size: 60%;
  border-radius: 0px;
  font-weight: 12px;
  margin-top: 0px;
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td,
th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
  font-size: 12px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}
.ui-accordion .ui-accordion-content {
  /* padding: 1em 2.2em; */
  border-top: 0;
  overflow: auto;
  padding: 1%;
  height: 150px;
}

#hubSpotFrame {
  border: none;
  width: 100%;
  height: 100vh;
  zoom: 100%;
}

/* Container for flex layout */
.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.table-container {
  width: 55%;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  position: absolute;
  left: 28%;
  top: 62px;
  display: none;
}

.table-heading {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
}

.styled-table thead {
  background-color: rgb(102, 102, 102);
  color: white;
}

.styled-table th,
.styled-table td {
  padding: 12px 15px;
  text-align: left;
}

.styled-table th {
  font-weight: 600;
}

.styled-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.styled-table tr:hover {
  background-color: #eaeaea;
}

.styled-table td {
  border-bottom: 1px solid #ddd;
}

/* Style for jsPanel container */
.panel-container {
  width: 45%;
}

/* Responsive Design */
/* @media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .table-container,
  .panel-container {
    width: 100%;
  }
} */

/* For small screens (e.g., mobile phones) */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .table-container,
  .panel-container {
    width: 100%;
  }

  .panel-container {
    margin-top: 10px; /* Add some spacing if needed */
  }
}

/* For larger screens (e.g., tablets and small laptops) */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .table-container,
  .panel-container {
    width: 48%; /* Split the width for a balanced layout */
  }
}

/* For larger desktops */
@media (min-width: 1025px) {
  .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .table-container,
  .panel-container {
    width: 45%; /* Adjust width to give space between elements */
  }
}

/* custom */
/* .dialer-container {
  position: absolute; 
  left: 350px; 
  top: 50px; 
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 200px;
}

.dialer-container label,
.dialer-container input,
.dialer-container select,
.dialer-container button {
  display: block;
  margin-bottom: 10px;
  width: 100%;
}

.dialer-container input,
.dialer-container select,
.dialer-container button {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.dialer-container button {
  background-color: #4caf50;
  color: white;
  border: none;
  cursor: pointer;
}

.dialer-container button:hover {
  background-color: #45a049;
} */
