.art-name {
    color: #ffffff !important; /* Example: Changes text color to red */
    font-size: 18px !important; /* Example: Adjusts font size */
}

.bid-main .Price {
    font-weight: bold !important; /* Example: Makes price stand out */
}


.cover-img-otr {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Creates a 1:1 square aspect ratio */
    overflow: hidden; /* Hides anything outside the container */
}

.cover-img-otr img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops and scales to fill while preserving aspect ratio */
    transform: translate(-50%, -50%); /* Centers the image */
}