.table {
    border-collapse: collapse;
    width: 100%;
}
.table td {
    border-right: 1px solid #ccc; 
    padding: 8px;
}
.table tr td:last-child {
    border-right: none; 
}


.custom-slider {
    width: 90%;
    margin: auto;
}

.custom-box {
    width: 320px;
    height: 340px !important;
    background: #FFFFFF;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 68, 68, 0.18);
    overflow-y: auto;
    margin-left: 9px;
}

/* Scrollbar styles */
.custom-box::-webkit-scrollbar {
    width: 1px; 
}

.custom-box::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px; 
}

.custom-box::-webkit-scrollbar-track {
    background: transparent; 
}
















.slick-prev,
.slick-next {
    position: absolute;
    line-height: 0;
    top: 50%;
    width: 30px;
    height: 30px;
    display: block;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    border-radius: 50px;
    background: #043e46;
}

.slick-slider {
    user-select: none;
}

.slick-next {
    right: -30px;
}

.slick-prev {
    left: -30px;
}
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
 display: flex;
 justify-content: center;
}

.slick-next:before {
    content: '\003e';
    font-size: 1.2em;
    font-weight: 1000;
    padding-left: 12px;
    color: white;
}

.slick-prev:before {
    content: '\003c';
    font-size: 1.2em;
    font-weight: 1000;
    padding-left: 9px;
    color: white;
}

@media (max-width:580px) {

    .slick-prev,
    .slick-next {
        display: none !important;
    }
    .slick-initialized .slick-slide{
        display: flex;
        justify-content: center;
    }

  
}
/* Styling for the dots on mobile view */
@media (max-width: 1210px) {

    .slide-padd{
        padding-bottom: 40px;
    }
    .slick-dots {
        position: absolute;
        bottom: -50px; 
        width: 100%;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .slick-dots li {
        display: inline-block;
        margin: 0 5px;
    }

    .slick-dots li button {
        
        font-size: 0; 
        color: transparent; 
        background: #ccc; 
        border: none;
        padding: 0;
    }

    .slick-dots button {
        background-color: #ccc; 
        border: none;
        border-radius: 50%;
        width: 15px; 
        height: 15px; 
        padding: 0;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .slick-dots .slick-active button {
        background-color: #007bff; 
    }

    .dot {
        background-color: #ccc; 
        width: 15px; 
        height: 15px; 
        border-radius: 50%;
        border: none;
        margin: 0 5px;
        transition: background-color 0.3s ease;
    }

    .dot.slick-active {
        background-color: #007bff; 
    }
}
