/* Sağ hızlı menü — dar pencerede görünür */
.chat-rail {
  display: none;
  position: fixed;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 125;
  flex-direction: column;
  gap: 6px;
  padding: 8px 4px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
}

html.layout-compact .chat-rail {
  display: flex;
  z-index: 1400;
}

.rail-btn {
  width: 42px;
  height: 42px;
  border: none;
  background: #fff;
  border-radius: 10px;
  font-size: 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.rail-gift {
  margin-top: 8px;
}

.rail-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  font-size: 9px;
  font-weight: 700;
  background: #2979ff;
  color: #fff;
  border-radius: 8px;
  line-height: 16px;
  text-align: center;
}
