.floating-plus-btn {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  z-index: 1000;
  transition: all 0.3s ease;
}

.floating-plus-btn:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
  color: white;
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.floating-plus-btn:active {
  transform: translateX(-50%) scale(0.95);
}

@media (max-width: 768px) {
    .floating-plus-btn {
        width: 56px;
        height: 56px;
        font-size: 24px;
        bottom: 20px;
    }
}