.auction-page .items {
    padding: 100px 50px;
}

.auction-page .items-content {
    gap: 73px;
}

.auction-page .items-content .item-content {
    padding: 15px 0;
}

.auction-page .items-content .bordered-item .title-item {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fbc430;
    margin: 15px auto 0;
}

.auction-page .items-content .bordered-item img {
    width: 113px;
    height: 195px;
}

.auction-page .items-content .bordered-item .bid-label {
    margin-bottom: 7px;
}

.auction-page .items-content .bordered-item .price-item {
    margin-bottom: 15px;
}

.auction-page .items-content .bordered-item .blue-button {
    margin-top: 15px;
}

.auction-item-tooltip {
    width: 470px;
    padding: 40px;
    background: rgba(14, 22, 29, 0.9);
    text-align: center;
}

.auction-item-tooltip .item-name {
    text-transform: uppercase;
    color: #fbc430;
    margin: 0;
}

.auction-item-tooltip .durability {
    color: #00fffc;
    margin: 25px 0;
}

.auction-item-tooltip .info {
    color: #889cad;
}
#item-tooltip {
    display: none;
    position: absolute;
    z-index: 9999; /* Ensure the tooltip appears above other content */

    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    pointer-events: none; /* Ensures the tooltip doesn't interfere with mouse events */
}

#item-tooltip .item-name {
    font-weight: bold;
}

#item-tooltip .durability {
    font-style: italic;
}
