/* /css/car-counter.css */
.car-type-counter {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.car-type-box {
    background-color: #1a237e;
    border-radius: 10px;
    padding: 20px;
    width: 200px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.car-type-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.car-type-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 15px;
}

.car-type-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.car-type-box:hover .car-type-icon img {
    transform: scale(1.1);
}

.car-type-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.car-type-count {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.car-type-box:hover .car-type-count {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .car-type-box {
        width: calc(50% - 20px);
        padding: 15px;
    }
    
    .car-type-icon {
        width: 48px;
        height: 48px;
    }
    
    .car-type-name {
        font-size: 16px;
    }
    
    .car-type-count {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .car-type-box {
        width: 100%;
    }
}