.manga-body {
    font-family: Arial, sans-serif;
    margin: 0 !important;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.manga-container {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin: 20px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    max-width: 133px;
}

.manga-container:hover {
    transform: scale(1.05);
}

.manga-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    height: 190px; 
}

.manga-image-container img {
    width: 100%!important;
    height: 100%!important; 
}

.manga-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.manga-title {
    font-size: 13px;
    white-space: nowrap; /* Prevent line breaks */
    overflow: hidden;     /* Hide overflowing text */
    text-overflow: ellipsis;  
    margin: 10px!important;
}

.read-button {
    background-color: #183153;
    color: white;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 0 0 5px 5px;
    width: 100%;
    transition: background-color 0.3s ease-in-out;
}

.read-button:hover {
    background-color: #FFD401; 
    color: #183153;
}
