.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.modal-box {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  width: 420px;
}

.agent-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 8px 0;
  padding: 10px;
  border-radius: 6px;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
}

.agent-btn .dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
}
.meeting-room-cta {
  background: #22c55e; /* match green */
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.gmls-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.gmls-modal.active {
    display: block;
}

.gmls-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.gmls-box {
    background: #fff;
    width: 90%;
    max-width: 520px;
    margin: 10vh auto;
    padding: 24px;
    border-radius: 8px;
    position: relative;
}

.gmls-close {
    position: absolute;
    right: 12px;
    top: 10px;
    font-size: 22px;
    border: none;
    background: none;
    cursor: pointer;
}
.gmls-agent-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f2f2f2;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.gmls-agent-btn:hover {
  background: #e8e8e8;
}

/* GREEN STATUS DOT */
.gmls-agent-btn .dot {
  width: 10px;
  height: 10px;
  background: #4CAF50;
  border-radius: 50%;
  display: inline-block;
}
#gmls-agent-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.gmls-refresh {
  margin-top: 20px;
  text-align: right;
  font-size: 14px;
  cursor: pointer;
}




