.title {
    color: green;
}


.card-img-top {
    width: 100%; /* Makes the image responsive */
    height: 250px; /* Set a fixed height */
    object-fit: cover; /* Ensures the image fills the box while maintaining aspect ratio */
    border-radius: 10px; /* Optional: Gives images rounded corners */
}


#loadMoreBtn {
    background-color: lightgrey;
    color: black;
    border: 1px solid black;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

#loadMoreBtn:hover {
    background-color: #f8f8f8;
    border-color: #555;
}

.text-left {
    text-align: left;
}
