

/* Start:/students/max/style.css?17888662532235*/
/* Общие свойства контейнеров */
.institute-groups-wrapper,
.max-chats {
  max-width: 1000px;
}

.institute-groups-wrapper {
  margin: 20px 0;
}

.max-chats {
  margin: 20px auto;
}

/* Заголовки и списки групп */
.institute-groups-wrapper h2 {
  font-size: 1.4rem;
  color: #003366;
  border-bottom: 2px solid #003366;
  padding-bottom: 6px;
  margin-bottom: 16px;
}

.groups-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.groups-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid #edf2f7;
  transition: background-color 0.15s;
}

.groups-list li:nth-child(even) {
  background-color: #f8fafc;
}

.groups-list li:hover {
  background-color: #f1f5f9;
}

.group-name {
  font-weight: bold;
  color: #1e293b;
  font-size: 0.95rem;
}

/* Ссылки групп */
.group-link {
  color: #2563eb !important;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.group-link:hover {
  text-decoration: underline !important;
  color: #1d4ed8 !important;
}

.group-link::after {
  content: "→";
  font-weight: normal;
}

/* Сетка чатов */
.max-chats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  padding: 0;
  list-style: none;
}

.max-chats__item {
  margin: 0;
}

.max-chats__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #e0e6ed;
  border-radius: 12px;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.max-chats__link:hover {
  transform: translateY(-3px);
  border-color: #0088cc;
  box-shadow: 0 8px 16px rgba(0, 136, 204, 0.12);
  color: #0088cc;
}

.max-chats__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f0f7fc;
  border-radius: 8px;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.max-chats__link:hover .max-chats__icon {
  background: #e1f0fa;
}
/* End */
/* /students/max/style.css?17888662532235 */
