.custom-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  overflow: hidden;
  padding: 4px;
 box-shadow: 0 0 3px 0 rgba(198, 198, 198, 1);
  background-color: #fff;
  box-sizing: border-box;
	margin-bottom: 20px;
}

.custom-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.custom-slider .slide {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
	padding: 4px; /* Add this line */
}

.custom-slider img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.caption {
  position: absolute;
  bottom: 4px;
  left: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  text-align: center;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0008;
  color: white;
  border: none;
  padding: 0px 0px 0 0px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50px;
  z-index: 2;
	 width: 30px;
    height: 30px;
    font-weight: 600;
}

.prev { left: 15px; }
.next { right: 15px; }
