/* Carousel Standardization */
.custom-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    /* Fixed height standard */
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 8px;
    background: #f0f0f0;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.custom-carousel-img {
    width: 100%;
    height: 200px;
    /* Force fix height */
    object-fit: cover;
    /* Crop to fit, don't distort */
    cursor: pointer;
    display: block;
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.lot-tooltip-image-placeholder {
    width: 100%;
    height: 150px;
    background: #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    border-radius: 6px;
    margin-bottom: 10px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-btn.prev {
    left: 8px;
}

.carousel-btn.next {
    right: 8px;
}

.carousel-counter-container {
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    text-align: center;
    pointer-events: none;
    z-index: 9;
}

.carousel-counter {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}