/* Fleet Card Styling */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.card-img-top {
    height: 220px;
    object-fit: cover; /* Ensures car images don't look stretched */
}

.badge {
    padding: 8px 12px;
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.btn-dark {
    background-color: #000;
    border-radius: 8px;
    padding: 10px;
}

.car-card {
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.car-img-container {
    height: 180px;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-img-container img {
    max-height: 100%;
    width: auto;
}

.badge-driver {
    position: absolute;
    background: #28a745;
    color: #fff;
    padding: 2px 10px;
    font-size: 12px;
    border-radius: 0 0 10px 0;
}