/* Vehicle details - HORIZONTAL LAYOUT */
.vehicle-details-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 16px;
    width: 100%;
    align-items: center;
}

.detail-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
    width: 100%;
}

.detail-item {
    background: #f8f9fa;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.owner-row {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    background: #f0f9ff;
    border-radius: 16px;
    padding: 4px 12px;
    display: inline-flex;
    width: auto;
}

.owner-badge {
    background: #e6f7ff;
    border: 1px solid #91d5ff;
    color: #0050b3;
    font-weight: 500;
    white-space: nowrap;
}

/* Timeline details container */
.timeline-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 8px;
    align-items: center;
}

/* Override any existing vertical styles */
.timeline-card .timeline-details {
    flex-direction: row !important;
}

.timeline-card .vehicle-details-grid {
    flex-direction: row !important;
}