html,
body {
    margin: 0 auto;
    padding: auto;
}

body {
    font-family: "Noto Sans Bengali", sans-serif;
}

.text-noto-sans-bengali {
    font-family: "Noto Sans Bengali", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.text-brand {
    color: #0E4A6F !important;
}

.bg-brand {
    background-color: #0E4A6F !important;
}

/* Fix: Properly target the columns inside carousel items */
#bookCarousel .carousel-item .col-12,
#bookCarousel .carousel-item .col-sm-6,
#bookCarousel .carousel-item .col-md-4 {
    padding: 5px;
}

/* Make all images square and responsive */
#bookCarousel .carousel-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Fix margin issues in row */
#bookCarousel .carousel-inner .row {
    margin-left: 0;
    margin-right: 0;
}

/* Prevent overflow issues */
#bookCarousel .carousel-item {
    overflow: hidden;
}

/* MEDIA QUERIES */
@media (max-width: 768px) {
    body {
        font-size: 14px !important;
    }
}