.carousel-container {
  width: 250px;
  height: 250px;
  position: relative;
  overflow: hidden; }

.carousel {
  display: flex;
  width: max-content;
  transition: transform 0.3s ease-in-out;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; }

.carousel img {
  width: 250px;
  height: 250px;
  object-fit: cover; }

.arrow-buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding: 0 35px;
  /* Adjust this padding as needed */ }

.prev-button,
.next-button {
  background: none;
  color: white;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  font-size: 54px; }

.prev-button {
  order: 1; }

.next-button {
  order: 2; }

@media screen and (max-width: 768px) {
  .arrow-buttons {
    padding: 0 15px; } }
