/**
 * Chat button styling
 */

/* Content styling */
.chat-title {
  font-size: 18px;
  font-weight: bold;
}

.chat-online {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
}

.chat-online-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
}

.chat-schedule {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  opacity: 0.8;
}

/* Responsive styling */
@media (max-width: 768px) {
  .chat-title {
    font-size: 16px;
  }

  .chat-online,
  .chat-schedule {
    font-size: 12px;
  }

  .chat-icon-left,
  .chat-icon-right {
    margin: 5px 0;
  }
}
