/* Стили только для виджета, чтобы не сбивать стили Jekyll */
.widget-fab-container {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.widget-fab-main, .widget-fab-action {
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border-radius: 50%;
  background: #4ecdc4;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.widget-fab-action {
  background: #fff;
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}

.widget-fab-main:hover {
  background: #38b2ac;
}

/* Скрыть на маленьких экранах, если нужно */
@media (max-width: 600px) {
  .widget-fab-container {
    right: 12px;
    bottom: 12px;
  }
} 