
/* Chat Layout Styles */
.chat-layout {
  display: flex;
  height: 100%;
  background: transparent;
}

/* Group Sidebar Styles */
.group-sidebar {
  width: 300px;
  background: rgba(20, 20, 20, 0.95);
  border-right: 2px solid #333;
  backdrop-filter: blur(10px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.sidebar-header {
  padding: 20px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-bottom: 2px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}



.group-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  position: relative;
}

.group-list-item:hover {
  background-color: var(--bs-gray-900);
  border-left-color: #00ff88;
}

.group-list-item.active {
  background: rgba(0, 255, 136, 0.1);
  border-left-color: #00ff88;
}

.group-list-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #00ff88;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.group-summary {
  color: #999;
}

.group-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: 10px;
}

.group-status-dot.online {
  background: #00ff88;
  box-shadow: 0 0 6px rgba(0, 255, 136, 0.6);
}

.group-status-dot.offline {
  background: #ff4444;
  box-shadow: 0 0 6px rgba(255, 68, 68, 0.6);
}

/* Group Main Content Styles */
.group-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  overflow: hidden;
  position: relative;
}

/* Welcome Screen Styles */
.welcome-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.welcome-content {
  text-align: center;
  max-width: 500px;
  padding: 40px;
}

.welcome-icon {
  font-size: 64px;
  margin-bottom: 20px;
  /*animation: pointLeft 2s ease-in-out infinite;*/
}

.welcome-content h2 {
  color: #00ff88;
  font-size: 28px;
  margin: 0 0 15px 0;
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.welcome-content p {
  color: #ccc;
  font-size: 16px;
  margin: 0 0 30px 0;
  line-height: 1.5;
}

.welcome-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

/* Group Detail Content Styles */
.group-detail-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.group-detail-content.hidden {
  display: none;
}

.main-content-area {
  flex: 1;
  padding: 20px 30px;
}

.group-checkboxes {
  display: flex;
  flex-direction: column;
  background: #333;
  border: 1px solid #555;
  border-radius: 6px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.checkbox-label:hover {
  background: #404040;
  border-color: #00ff88;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  background: #333;
  border: 2px solid #555;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.checkbox-label input[type="checkbox"]:checked {
  background: #00ff88;
  border-color: #00ff88;
}

.checkbox-label span {
  color: #fff;
  font-size: 14px;
}
