﻿.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 150px; /* Adjust the height as needed */
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

    .slide img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 10px;
    }

.cradi {
    border-radius: 10px;
}

.book-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 0 0.5rem rgba(0,0,0,0.3);
    border-radius: 0.5rem;
}

.book-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}