/* Vehicle Dropdown Styles */
.vehicle-selector-header {
    position: fixed;
    top: 0;
    right: 200px;
    display: flex;
    gap: 8px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.vehicle-selector-header select,
.vehicle-selector-header button {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    background: white;
    min-width: 120px;
    transition: all 0.2s ease;
}

.vehicle-selector-header select:focus,
.vehicle-selector-header button:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}

.vehicle-selector-header select:disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.vehicle-selector-header button {
    background: #007cba;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 500;
    white-space: nowrap;
}

.vehicle-selector-header button:hover:not(:disabled) {
    background: #005a87;
    transform: translateY(-1px);
}

.vehicle-selector-header button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vehicle-selector-header {
        position: relative;
        right: auto;
        top: auto;
        margin: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .vehicle-selector-header select,
    .vehicle-selector-header button {
        min-width: 100px;
        font-size: 12px;
    }
}