/*version 2*/

.lines-slider {
    padding: 30px 0; /* Top and bottom padding of 30px */
}


.lines-slider .slide {
    margin: 10px; /* Margin around each slide */
    padding: 10px; /* Padding inside each slide */
    box-sizing: border-box; /* Ensures padding does not add to the total width and height */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease;
    border: 1px solid transparent; /* Ensure the border is initially transparent */
}

.lines-slider .slide:hover {
    transform: translateY(-10px);
}


.lines-slider .slick-title {
    margin-top: 10px;
    font-size: 16px;
    text-align: center;
}

/* Slider container adjustments */
.slider-container {
    position: relative; /* Ensures absolute positioning is relative to this container */
    overflow: visible; /* Allows arrows to show outside the slider bounds */
    margin: 0 auto; /* Center the slider if needed */
    padding: 0 60px; /* Adds space for arrows on the sides without clipping */
}

/* Custom arrow buttons */
.custom-prev, .custom-next {
    position: absolute;
    top: 50%; /* Align vertically to the middle */
    transform: translateY(-50%); /* Center vertically */
    z-index: 100; /* Ensure they are above the slider content */
    cursor: pointer;
    border: none;
    background: transparent;
    color: black; /* Arrow color, change as needed */
    width: 50px;
    height: 50px;
    font-size: 24px; /* Icon size, adjust as needed */
    text-align: center;
    line-height: 50px; /* Center the icon */
}

.custom-prev {
    left: -40px; /* Position outside the slider on the left */
}

.custom-next {
    right: -40px; /* Position outside the slider on the right */
}

/* Hover styles for arrows */
.custom-prev:hover, .custom-next:hover {
    color: #555; /* Darken arrow color on hover for better visibility */
}

