/* Стили кнопок навигации */
.pictura-prev,
.pictura-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.pictura-prev:hover,
.pictura-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.pictura-prev {
  left: 15px;
}

.pictura-next {
  right: 15px;
}

.pictura-dots{
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
}