/* (C) 2026 Francesco Settembrini */

:root {
    --rental-green: #10b981;
    --rental-dark: #374151;
    --rental-light-bg: #f8fafc;
}

.hero-minimal {
    background-color: var(--rental-light-bg);
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 0; /* Ridotto drasticamente da 25px */
}

.page-title {
    font-weight: 500;
    color: var(--rental-dark);
    letter-spacing: -0.5px;
    font-size: 1.25rem; /* Ridotto da 1.75rem */
    display: inline-block;
    margin-right: 15px;
}

.header-sub {
    font-size: 0.85rem;
    color: #64748b;
    display: inline-block;
}

.row-map { margin-bottom: 1.5rem !important; } /* Ridotto da mb-5 */

#fleet-map {
    height: 250px; /* Ridotto da 300px per risparmiare spazio */
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
}

.vehicle-vehicled {
    border: 1px solid #f1f5f9;
    background-color: #ffffff;
    border-radius: 0.75rem;
    transition: transform 0.2s ease;
    overflow: hidden;
}

.vehicle-vehicled img {
    height: 140px; /* Ridotto da 160px */
    object-fit: cover;
}

.vehicle-title { font-weight: 600; color: var(--rental-dark); font-size: 0.95rem; }
.vehicle-info { font-size: 0.8rem; color: #64748b; }
.rate-badge {
    background-color: #ecfdf5;
    color: var(--rental-green);
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.marker-color-rented { filter: hue-rotate(120deg); }
