/* Custom styles that can't be handled by Tailwind */
#car-container {
    position: relative;
    overflow: hidden;
}

.inspection-point {
    transition: all 0.3s ease;
}

.inspection-point:hover {
    transform: translateY(-2px);
}

.tooltip {
    visibility: hidden;
    position: absolute;
    z-index: 1;
    width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.inspection-point:hover .tooltip {
    visibility: visible;
    opacity: 1;
}