/* Timeline controls styling - matching genealogy button styles */
.timeline-control-button {
  position: relative;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 0.375rem;
  padding: 8px;
  font-weight: bold;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}

.timeline-control-button:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.15), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.timeline-control-button svg {
  width: 24px;
  height: 24px;
}
